Just a simple nodejs noob question here. I'm trying to find out how to load and "display" a basic HTML file so I don't have to write code likeresponse.write('...<p>blahblahblah</p>...');.
|
|
|
I just found one way using the 'fs' library. I'm not certain if it's the cleanest though.
The basic concept is just raw file reading and dumping the contents. Still open to cleaner options, though! |
|||||||||||||
|
|
You should use express.js instead. For example also the templating engine jade is pretty cool. You could watch these videos to learn basic of express.js |
|||||||||||||||||
|
|
I know this is an old question, but as no one has mentioned it I thought it was worth adding: If you literally want to serve static content (say an 'about' page, image, css, etc) you can use one of the static content serving modules, for example node-static. (There's others that may be better/worse - try search.npmjs.org.) With a little bit of pre-processing you can then filter dynamic pages from static and send them to the right request handler. |
|||
|
You can echo files manually using the fs object, but I'd recommend using the ExpressJS framework to make your life much easier. ...But if you insist on doing it the hard way:
|
|||||
|
|
There's a list of templating modules here: https://github.com/ry/node/wiki/modules#templating Even if your goal is to learn by coding these may still provide some ideas. |
|||
|
|
If you only want a simple HTTP server using Node.js then: https://github.com/nodeapps/http-server looks like the way to go. |
|||
|
|