On Apr 21, 2013, at 03:04, Jakub Tětek wrote: > I'm beginner and I need HTTP server, what will by the same at my all > projects. I mean, that I will have got server and I will include file with my > script. > Is it good way how to do that? > Please can you link me to same guide, how to do that?
It does sound like you haven't spent much or any time with node.js yet and don't really know what it is. node.js is a server-side JavaScript environment that's especially well suited to making network servers. So yes, you can make an http server with it. express.js is probably a good place to start learning. It's a framework that helps you organize your files and takes care of a lot of web serving details for you. http://expressjs.com/ Try making a small web site with it; after you do, you should be in a position to ask better questions about your specific needs. There are many express.js tutorials available (search!), but make sure you follow one that's recent enough to work on express 3 and node.js 0.10. -- -- 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 --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
