Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用节点框架 Meteor JS 进行开发。
对那些熟悉它的人来说一个问题,是否可以在不使用小程序的情况下执行我用 Java 编写的代码?
我该怎么做呢?
感谢您的时间。
您可以像任何命令行工具一样在服务器端运行它们:
var exec = Npm.require('child_process').exec; exec("java myProgram.jar param param", function (error, stdout, stderr) { ... });