Tag: node.js
Tip of the Day: Calculating durations with Moment
Moment has quite a nice fluent interface for some operations, others just need a little more thought. For example, I wanted the duration of something and I had...
Deploying a Node.js with Express application on Azure
By the end of the last post , there was enough of an application to deploy it, so let’s deploy it. Prerequisites An FTP client to get at the files on Azure. A...
Node.js with Express – Come to the dark side. We have cookies!
So far, so good. At the point the application displays a list of languages and will display the language that the user picked. However, for the flashcards to...
Node.js with Express - Getting form data
Now that view engines are wired up and working on this application, the next area to look at is getting data back from the browser. By default Express doesn’t...
Express for node.js – View Engines
In the last post, Express Hello World , I talked about getting started with an Express application in Node.js. In it, the output was rendered by writing HTML...
Express for node.js walk through – Hello World
While both Visual Studio and WebStorm have templates for node.js Express applications in this post (and and subsequent few posts) I’m going to walk through...
Node Package Manager – npm
The Node Package Manager is a bit like NuGet for node. It is a way to get additional functionality into node for frameworks that were not bundled with node...
Working with Modules in node.js
In my last post on node.js I showed how to set up a development environment to work with node. Now, I’m going to introduce some bits and pieces to get going a...
Node.js – Setting up a basic development environment
Node.js is a platform for executing JavaScript outside of the browser. It runs on the Google V8 engine which effectively means it is cross platform as it can...
