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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何从Node.js中的URL加载外部js脚本相关的知识,希望对你有一定的参考价值。

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

http://example.com/api/js

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

谢谢!

答案

exec('wget http://example.com/api/js', function(stdout) );应该做的伎俩。如果您需要高级控制,请使用http模块

http://docs.nodejitsu.com/articles/HTTP/clients/how-to-create-a-HTTP-request

另一答案

使用GGScript

const GGScript = require("ggscript")
GGScript("http://example.com/api/js").then(() => 
    console.log("Finished loading file.")
)

以上是关于如何从Node.js中的URL加载外部js脚本的主要内容,如果未能解决你的问题,请参考以下文章

node.js 是不是能够从 URL 读取?

Node.js 的回调模式

如何从 Node.js 中的 URL 请求

是否可以使用 node.js 从 URL 导入脚本?

如何从 node.js 中的 postgresql 脚本中读取

Node.js:如何重新加载模块