UNPKG

generator-angular-mika

Version:

Basic estructure of PW1 made whit MongoDB, ExpressJS, AngularJS and NodeJS, whit ES6 and basic OOP

9 lines (7 loc) 231 B
const express = require('express'), router = express.Router(), path = require('path'); router.get('*', (req, res, next) => { res.sendFile(path.join(__dirname + '/../public/index.html')); }); module.exports = router;