node.js - Express.js turn off views only display JSON -



node.js - Express.js turn off views only display JSON -

is there way in express.js/node disable view engine , homecoming json? app working on homecoming json

var jsondata = [{ "id": 1, "email": "1@demo.in" },{ "id": 2, "email": "2@demo.in" }];

and res.json(jsondata), don’t need view engine.

sample code:

var express = require('express'), router = express.router(); router.get('/api/users', function(req, res){ res.json(jsondata); });

node.js express

Comments

Popular posts from this blog

maven fortify plugin : Unable to load build session with ID XXXXX .. See log file for more details -

c# - Primavera WebServices does not return any data -

android - Display emoji panel with genymotion - keyboard/touch input? -