UNPKG

npm-gui

Version:

Graphic User Interface for NPM packages/tasks for front and back -end users.

8 lines (6 loc) 298 B
var express = require('express'); var router = express.Router(); var path = require('path'); router.use(express.static(path.normalize(__dirname + '/lib/public'), {'index': ['index.html', 'index.htm']})); router.use('/node_modules', express.static('node_modules')); module.exports = router;