I'm trying to figure out of if there is a feature or convention I'm missing for referencing a js file from a node_module in the client html via script. For example, I have underscore installed via npm and use it on the server side, but also want to use underscore-min.js in the client. Right now i symlink the file into my expressjs static folder, but that seem hacky.

Is there an official or at least cleaner way?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

underscore-min.js really has nothing to do with node. It's a distributed file for serving to clients. My advice is to copy it out of the module into any static serving location you want. It may feel hacky to have 2 copies of the same file, but it's not. You may even want them to be updated separately.

link|improve this answer
So npm modules have no blessed way of exposing their files to be served by node as static files. Well, just wanted to make sure that copying the file was the proper way to do it. – Arne Claassen Dec 12 '11 at 0:42
feedback

You can try browserify and put all your js files (Node modules) in a folder, for more details checkout his awesome article:

http://substack.net/posts/24ab8c/browserify-browser-side-require-for-your-node-js

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.