UNPKG
bogart-edge
Version:
latest (0.7.14)
0.7.14
0.7.12
0.7.11
0.7.10
0.7.9
0.7.8
0.7.7
0.7.6
0.7.5
0.7.3
0.7.2
0.7.1
0.7.0
Fast JSGI web framework taking inspiration from Sinatra
github.com/nrstott/bogart
nrstott/bogart
bogart-edge
/
benchmarks
/
hello-world
/
hello-world.js
9 lines
(6 loc)
•
169 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
bogart =
require
(
'../../lib/bogart'
);
var
router = bogart.
router
(); router.
get
(
'/'
,
function
(
req
) {
return
bogart.
html
(
'Hello World'
); }); bogart.
start
(router);