Blog
Author Archive
gg
Jump to first line of document.
G
Jump to last line of document.
0
Jump to first character of current line.
$
Jump to last character …
Read more
// Route for each poll
// and “:poll_id” is a URL parameter where a value passed the to URL,
// like …
Read more
// Module that deals with routing and
// “require” loads an additional library
var express = require(‘express’);
// Express handlebars module
var exphbs = …
Read more
Install the following modules, using the commands below and pressing Enter after each one:
npm install express –save
npm install express-handlebars –save
npm …
Read more
app.get(‘/tester’, function(req, res) {
// Below I’m passing in a JSON object (or hash table of keys …
Read more