我有一个在VPS上运行的node.js服务器,我想使用从另一台服务器提供的js脚本,如:
http://example.com/api/js
如何加载此脚本并在我的node.js文件中使用它?
谢谢!
答案 0 :(得分:4)
exec('wget http://example.com/api/js', function(stdout) { });
应该做到这一点。如果您需要高级控制,请使用http
模块
http://docs.nodejitsu.com/articles/HTTP/clients/how-to-create-a-HTTP-request
答案 1 :(得分:0)
使用GGScript。
const GGScript = require("ggscript")
GGScript("http://example.com/api/js").then(() => {
console.log("Finished loading file.")
})