UNPKG
scriptbox
Version:
latest (0.0.3-patch5)
0.0.3
0.0.3-patch5
0.0.3-patch4
0.0.3-patch3
0.0.3-patch2
0.0.3-patch1
0.0.2-b
0.0.1-b
0.0.1-a
Script box is a full VAS application
github.com/badlee/scriptbox
badlee/scriptbox
scriptbox
/
routes
/
admin
/
help-about.js
8 lines
•
187 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module
.
exports
=
function
(
app,dir
){ app.
get
(
"/help"
,
function
(
req, res,next
){ res.
render
(
"page-help"
); }); app.
get
(
"/about"
,
function
(
req, res,next
){ res.
render
(
"page-about"
); }); }