Tagged “nodejs”

Jan 12, 2015

Installing Node.js and npm on Ubuntu 14.04

I've decided to start being systematic about learning javascript, with a focus on getting good with d3js. I'll be installing nodejs and npm (node package manager) as a way to get access to a javascript console and, for later, a powerful javascript environment.

Read more...

Mar 14, 2016

Install Meteor on Ubuntu 14.04

I've been spending a lot of time working with Meteor recently. This framework uses javascript and MongoDB to create a full stack solution that is pretty easy to use. The installation is simple and painless on Ubuntu 14.04, but I'll document my process here for reference and provide some links for learning more about Meteor.

Read more...

Mar 14, 2016

Installing node LTS version on Ubuntu 14.04

In a previous post I installed nodejs on Ubuntu 14.04 using what were current instructions at the time. Those notes are outdated at this point so I thought I'd document the current way to install the LTS version of node.

Read more...

Mar 30, 2016

Upgrading to Meteor 1.3 on Ubuntu 14.04

In a recent post I documented the install process for Meteor -- at that time the current version was 1.2.1. Well, the new version -- 1.3 -- is out and I will briefly document the upgrade process and provide some links to new guides and tutorials that the MDG (Meteor Development Group) has released.

Read more...

Jul 13, 2016

ES2015 using Node, Babel and Webpack

In this post I will cover setting up a project that uses ES2015/ES6 -- modern JavaScript-- that will still work in current web browsers that need ES5. The trick is to use Babel to transpile ES2015/ES6 code to ES5, which can run on current browsers. Why do this? Well, ES2015/ES6 is the future of JavaScript and I'd like to start using it now.

Read more...