Is there a way to precompile node.js scripts?

Is there a way to precompile node.js scripts and distribute the binary files instead of source files?

Thanks

Short answer:

No.

Long answer:

Node.js runs javascript and there's no such thing as compiling in javascript. You can minify and/or concatenate the script files but not really compile. One excellent tool for concatenating and minifying js is grunt. I guess that's not really an answer to your question since you are specifically asking for binary files. Thus the long answer to your specific question is also no.

See also: What is a JavaScript pre-compiled library?