On Saturday, July 21, 2012 9:56:16 PM UTC-4, 徐峰 wrote: > > New to nodejs, and I've read the book "The Node Beginner > Book"<http://www.nodebeginner.org/>written by Manuel > Kiessling <http://twitter.com/manuelkiessling> .But there's something > which this book fails to mention is that all the js files are in the same > fold or the same path. eg, when create a blog project and I name it blog, > and then I add the server.js, app.js, do I have to include the *node.exe > *file > in the same folder too? or Can I just place it other where? Can anyone help > or recommend some article about the path in nodejs. Thx a lot!
When you install node on Windows, you can execute node from anywhere, just like when you execute `make install` on any non-Windows systems when building node from source. You do not need to copy node.exe anywhere, it's already in your system PATH. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
