UNPKG

bigpipe

Version:

Bigpipe a radical new web framework for Node.js that's inspired by Facebook's bigpipe concept.

16 lines (14 loc) 265 B
'use strict'; require('pagelet').extend({ js: 'hero.js', css: 'hero.css', view: 'hero.html', path: '/hero', render: function render(data, done) { setTimeout(function () { done(null, { foo: 'bar' }); }, 10); } }).on(module);