Skip to content

Instantly share code, notes, and snippets.

@StephanHoyer
Created December 16, 2014 17:08
Show Gist options
  • Save StephanHoyer/dc6c2ae8d3ea7b0a99f9 to your computer and use it in GitHub Desktop.
Save StephanHoyer/dc6c2ae8d3ea7b0a99f9 to your computer and use it in GitHub Desktop.
var express = require('express');
function base(content) {
return [
'<!doctype html>',
'<html>',
'<head>',
'<link href="/index.css" media="all" rel="stylesheet" type="text/css">',
'<link href="/latin/firasans-bold,firasans-hair,firasans-light,firasans-book,firasans-italic,firamono-bold/fonts.css" type="text/css" rel="stylesheet"/ >',
'<script src="/index.js"></script>',
'</head>',
'<body>',
content,
'</body>',
'</html>'
].join('');
}
var app = express();
var routes = {
'/super-route', superRouteMithrilModule,
// other fancy routes
};
each(routes, function(module, route) {
app.get(route, function(req, res) {
var scope = module.controller(req.params);
if (!scope || !scope.onReady) {
return res.end(base(render(module.view(scope))));
}
scope.onReady.addOnce(function() {
res.end(base(render(module.view(scope))));
});
});
});
module.exports = app;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment