1. Vonage Learn
  2. It
  3. Courses
  4. Onehack
  5. Node
  6. Sending Json

Sending JSON

Learn how to use Node.js, Express.js and Nunjucks to create dynamic web applications

Films array

let films = [
   { id: 'tt1825683', name: 'Black Panther' },
   { id: 'tt0203009', name: 'Moulin Rouge!' },
   { id: 'tt0446029', name: 'Scott Pilgrim vs. the World' },
   { id: 'tt1285016', name: 'The Social Network' },
   { id: 'tt2090440', name: 'Zombieland' }
];

GET /films Route Handler

app.get('/films', function(request, response) {
   response.json(films);
});

JSONView Extension for Chrome

JSONView Extension for Firefox

Need help? Have questions? Join the Vonage Developer Community Slack and use the channel #onehack.