UNPKG

bigpipe

Version:

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

15 lines (11 loc) 218 B
/*globals pipe */ 'use strict'; function Hero(name) { this.name = name; } Hero.prototype.speak = function speak() { console.log('I\'m ', this.name); }; pipe.on('hero', function () { var hero = new Hero(); });