Sign in
apache
/
nifi-fds
/
gh-pages
/
.
/
node_modules
/
ecstatic
/
example
/
core.js
blob: ad48b15a0930cb2e17a79a568d27814c8ad60858 [
file
] [
log
] [
blame
]
'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'
);