有没有办法为 node.js 的 golang 库创建绑定?

Is there a way to create bindings for golang library for node.js?

情况很简单:我有一个 node.js 应用程序,希望它能够调用我用 golang 编写的网络库中的函数。据我所知,node 中有许多围绕 c/c++ 代码的包装器,我可以围绕我的 golang 库创建一个吗?

有一个工具 gopy http://gopy.qur.me/extensions/install.html 可以解决 python 的这个问题,但我找不到 node.js

的类似工具

目前似乎无法在 golang 中构建共享库。在 golang repos and a document describing the go execution mode.

中讨论这个问题

关于这个的讨论Call Go functions from C