如何从Node.js中的URL加载外部js脚本

时间:2014-08-30 17:03:25

标签: javascript node.js

我有一个在VPS上运行的node.js服务器,我想使用从另一台服务器提供的js脚本,如:

http://example.com/api/js

如何加载此脚本并在我的node.js文件中使用它?

谢谢!

2 个答案:

答案 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.")
})