UNPKG
pbd-dist-one
Version:
beta (1.0.0)
dist_pub_update_one (1.3.0)
from_development_environmnet (1.9.1)
latest (1.0.0)
minor_changes (1.2.0)
path_default (1.1.0)
route_administration (1.8.0)
route_administration_check (1.9.0)
route_integration (1.6.0)
route_integration_fix (1.7.0)
route_prafix (1.4.0)
route_prafix_slash_added (1.5.0)
1.9.1
1.9.0
1.8.0
1.7.0
1.6.0
1.5.0
1.4.0
1.3.0
1.2.0
1.1.0
1.0.0
Path ajdustments
pbd-dist-one
/
routes
/
index.js
10 lines
(7 loc)
•
205 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
var
express =
require
(
'express'
);
var
router = express.
Router
();
/* GET home page. */
router.
get
(
'/'
,
function
(
req, res, next
) { res.
render
(
'index'
, {
title
:
'Express'
}); });
module
.
exports
= router;