You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
typesetting/pitfall/pdfkit/node_modules/http-browserify/example/json-stream/server.js

11 lines
238 B
JavaScript

7 years ago
var http = require('http');
var ecstatic = require('ecstatic')(__dirname);
var fs = require('fs');
var server = http.createServer(function (req, res) {
ecstatic(req, res);
});
console.log('Listening on :8088');
server.listen(8088);