14 lines
242 B
JavaScript
14 lines
242 B
JavaScript
'use strict';
|
|
|
|
const http = require('http');
|
|
|
|
const ecstatic = require('../lib/ecstatic')({
|
|
root: `${__dirname}/public`,
|
|
showDir: true,
|
|
autoIndex: true,
|
|
});
|
|
|
|
http.createServer(ecstatic).listen(8080);
|
|
|
|
console.log('Listening on :8080');
|