I have created a MEAN stack web application by following the tutorial http://start.jcolemorrison.com/building-an-angular-and-express-app-part-2/ After adding the signup.js as below,
var express = require('express');
var router = express.Router();
router.post('/', function (req, res) {
I am getting below error :
router.post('/', function (req, res) { ^ TypeError: Cannot read property 'post' of undefined
Please guide me.