Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to create a module for nodejs that can be used standalone. The module source is literally just JavaScript files that are executed using nodejs.

I am not sure exactly how this would work, but essentially:

npm install mymodule

node mymodule inputfile

or better

mymodule inputfile

How would this work?

share|improve this question

1 Answer

up vote 2 down vote accepted

There's an excellent guide for writing modules on how to node.

Jade is a great example of executable module.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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