biofriction-wp-theme/node_modules/vm-browserify/example/run/server.js

7 lines
220 B
JavaScript
Raw Normal View History

2021-10-26 14:18:09 +02: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');