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

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>...');.

share|improve this question

6 Answers

up vote 41 down vote accepted

I just found one way using the 'fs' library. I'm not certain if it's the cleanest though.

var http = require('http'),
    fs = require('fs');


fs.readFile('./index.html', function (err, html) {
    if (err) {
        throw err; 
    }       
    http.createServer(function(request, response) {  
        response.writeHeader(200, {"Content-Type": "text/html"});  
        response.write(html);  
        response.end();  
    }).listen(8000);
});

The basic concept is just raw file reading and dumping the contents. Still open to cleaner options, though!

share|improve this answer
5  
you should use fs.readFileSync in your case, it would be bad for the page to come up as undefined. But yes, that's a good way to make a basic html server – generalhenry Jan 18 '11 at 6:30
Next you could add simple template caching, something like: cache['index'] = data; // Given var cache = {}; – TK-421 Jan 18 '11 at 12:42
sys = require('util') is not needed since nothing is printed to the console. – Bakudan Dec 9 '11 at 6:33
I think the response.close() must be changed to response.end() – Anand Sunderraman May 11 '12 at 8:47
This reads the whole file into memory, and on every request. You should really be streaming the file from disk rather than buffering it. Good quality libraries exist for this kind of thing, such as senchalabs.org/connect and github.com/cloudhead/node-static – Drew Noakes Aug 17 '12 at 14:16
show 1 more comment

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

share|improve this answer
2  
Awesome! I hadn't seen the expressjs videos before. I'll be checking these out. You're right, I really should let a framework do the heavy lifting for me. But before I do that, I like to know a bit of what's going on under the hood for those times when you need to come up with inventive hacks. – Just a guy Jan 18 '11 at 22:40
Then I guess you should look at the express source code to learn it properly => github.com/visionmedia/express – Alfred Jan 18 '11 at 23:16
@Alfred, As long as using jade with node, it's fine. But then if for the sake of consistency, you decide to use jade for your client side script too - IE8 complains. – Ustaman Sangat Feb 15 '12 at 17:26
3  
links no longer works – Adonis K. Feb 25 at 11:19
1  
Yes please, can you provide links for the videos? – FranXh Mar 27 at 6:05

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.

share|improve this answer
+1 for node-static. It is a really easy way to put up static files. – Nikwin Dec 29 '11 at 6:24
The answer doesn't load the js file correctly, using node-static solves my problem. – AZ. Mar 28 '12 at 4:31

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:

var http = require('http');
var fs = require('fs');
var sys = require('sys');

http.createServer(function(req, res){
    fs.readFile('test.html',function (err, data){
        res.writeHead(200, {'Content-Type': 'text/html','Content-Length':data.length});
        res.write(data);
        res.end();
    });
}).listen(8000);
share|improve this answer
1  
Yeah, that's roughly the same thing I cam up with. Thanks for the Express suggestion too. It's pretty sweet, and I'm pretty sure I'll be using it for my next project. My goal was to kinda figure out how it's done under the hood before I let the framework do the heavy lifting for me. – Just a guy Jan 18 '11 at 22:39

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.

share|improve this answer
Thanks for the tip. I've taken a look at those, and they have done just that for me. – Just a guy Jan 18 '11 at 22:36

If you only want a simple HTTP server using Node.js then:

https://github.com/nodeapps/http-server

looks like the way to go.

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.