Skip to content
Advertisement

How to load external js script from URL in Node.js

I have a node.js server running on a VPS and I want to use a js script that is served from another server, something like:

http://example.com/api/js

How do I load this script and use it in my node.js file?

Thanks!

Advertisement

Answer

exec('wget http://example.com/api/js', function(stdout) { }); should do the trick. If you need advanced control, use http module.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement