在 Node.js 和浏览器之间共享类
如果我有一个类,共享该类并在浏览器和 Node.js 中使用它的最佳方式是什么?
例如,在客户端和 Node.js 上都使用 2D Vector 数学类的游戏。
If i have a class, what is the best way to share that class and use it in both the browser as well as Node.js?
For example a game that uses a 2D Vector math class on both the client-side and the node.js.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
NowJS 是一种非常优雅的方式,通过自动同步的共享命名空间在客户端 JS 和 Node JS 之间共享变量和函数。
还有 dnode,作者在此处评论了有关 NowJS 的帖子:http://news.ycombinator.com/item?id=2316079
NowJS is a pretty elegant way to share variables and functions between client JS and Node JS through an automatically sync'ed shared namespace.
There's also dnode, which the author comments on in response to a posting about NowJS here: http://news.ycombinator.com/item?id=2316079
此外,Haxe 是一种允许您在浏览器和服务器上使用相同语言进行编写的语言。
Also, Haxe, a language that lets you write using the same language for the browser and the server.
看看 NowJS,它应该可以满足您的需求。 (请注意,从 2024 年开始,该项目似乎已经死亡。)
Take a look at NowJS, which should do what you want. (Note from 2024, the project appears dead.)
将其编写为 CommonJS/Node.js 模块,以便在 Node.js 中正常工作,然后使用 网络制作。这是双方共享相同代码库的最简单方法
Write it as CommonJS/Node.js module, so it works normally in Node.js, and then pack written module for browser using Webmake. It's simplest way to share same codebase on both sides