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

formatting - SAS SQL Datepart function returning odd values -

c++ - Apple Mach-O Linker Error(Duplicate Symbols For Architecture armv7) -

php - Yii 2: Unable to find a class into the extension 'yii2-admin' -