在 Node.js 和浏览器之间共享类

发布于 2024-11-02 22:32:20 字数 95 浏览 1 评论 0原文

如果我有一个类,共享该类并在浏览器和 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

记忆消瘦 2024-11-09 22:32:20

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

维持三分热 2024-11-09 22:32:20

此外,Haxe 是一种允许您在浏览器和服务器上使用相同语言进行编写的语言。

Also, Haxe, a language that lets you write using the same language for the browser and the server.

旧城烟雨 2024-11-09 22:32:20

看看 NowJS,它应该可以满足您的需求。 (请注意,从 2024 年开始,该项目似乎已经死亡。)

Take a look at NowJS, which should do what you want. (Note from 2024, the project appears dead.)

红焚 2024-11-09 22:32:20

将其编写为 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文