Technology

Using EJS in your Node.JS application

EJS as the name implies embedded JavaScript, is a JavaScript templating library used to render html code along with JSON data in an easy and clean way. In a Node.JS application(here we are using an express application), you need to set the value of 'view engine' parameter to 'ejs'. [js] var app = express(); app.set('view engine',...

by Sakshi Tyagi
Tag: ejs
31-Jan-2014