UNPKG
midnight
Version:
latest (0.2.1)
0.2.1
0.2.0
0.1.0
0.0.4
0.0.3
0.0.2
0.0.1
Web framework for building modern web applications
github.com/msavela/midnight
msavela/midnight
midnight
/
examples
/
basic
/
app.js
9 lines
(6 loc)
•
138 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
const
midnight =
require
(
"../../"
);
const
app =
midnight
(); app.
route
(
"/"
,
(
req, res
) =>
{ res.
send
(
"Hello world!"
); }); app.
start
();