UNPKG
simplehttpserver
Version:
latest (0.3.0)
0.3.0
0.2.1
0.2.0
0.1.1
0.1.0
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Simple HTTP Server for static files. Intended as testing and development tool
tikonen/blog
simplehttpserver
/
cli.js
12 lines
(5 loc)
•
179 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env node
var
path =
require
(
'path'
);
var
fs =
require
(
'fs'
);
var
lib = path.
join
(path.
dirname
(fs.
realpathSync
(__filename)),
'simplehttpserver'
);
require
(lib);