Files
red_de_investigacion_front/node_modules/vm-browserify/example/run/server.js
T

7 lines
220 B
JavaScript
Raw Normal View History

2020-01-14 20:43:08 -06:00
var ecstatic = require('ecstatic')(__dirname);
var http = require('http');
http.createServer(ecstatic).listen(8000);
console.log('listening on :8000');
console.log('# remember to run browserify entry.js -o bundle.js');