You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
220 B

4 years ago
  1. var ecstatic = require('ecstatic')(__dirname);
  2. var http = require('http');
  3. http.createServer(ecstatic).listen(8000);
  4. console.log('listening on :8000');
  5. console.log('# remember to run browserify entry.js -o bundle.js');