4

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!

1

1 Answer 1

4

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

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.