templito
Version:
Generates javascript files for underscore.js templates.
19 lines (15 loc) • 665 B
JavaScript
// Load the http module to create an http server.
var http = require('http');
var templates = require('./compiled_templates/templates');
var bar = require('./compiled_templates/bar/bar');
// Configure our HTTP server to respond with Hello World to all requests.
var server = http.createServer(function (request, response) {
response.writeHead(200, {"Content-Type": "text/html"});
response.end(templates.Templates.layout({
body: templates.Templates.foo({foo: "Here it is."})
}));
});
// Listen on port 8000, IP defaults to 127.0.0.1
server.listen(8000);
// Put a friendly message on the terminal
console.log("Server running at http://127.0.0.1:8000/");