Nodejs 的独立模块?
我想为nodejs 创建一个可以独立使用的模块。模块源实际上只是使用 Nodejs 执行的 JavaScript 文件。
我不确定这到底是如何工作的,但本质上是:
npm install mymodule
node mymodule inputfile
or better
mymodule inputfile
这将如何工作?
I would like to create a module for nodejs that can be used standalone. The module source is literally just JavaScript files that are executed using nodejs.
I am not sure exactly how this would work, but essentially:
npm install mymodule
node mymodule inputfile
or better
mymodule inputfile
How would this work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个关于如何使用节点编写模块的优秀指南。
Jade 是可执行模块的一个很好的例子。
There's an excellent guide for writing modules on how to node.
Jade is a great example of executable module.