tag: javascript

ES2015 using Node, Babel and Webpack

Jul 13, 2016

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.

Upgrading to Meteor 1.3 on Ubuntu 14.04

Mar 30, 2016

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.

A d3 experiment on my Tinkerer blog

Mar 15, 2016

This blog uses Tinkerer, which is based on the Sphinx documentation framework, to create static html pages from rest (rst) markup. If you are familiar with the Python world you've probably created documentation using Sphinx, or at the very least, you have read documenation created in Sphinx. Because the setup is Python-focused, it is not straightforward to write posts that employ javascript libraries like d3. This post describes my method for doing javascript examples in Tinkerer blog posts or Sphinx docs, as well as how to do some d3.

Install Meteor on Ubuntu 14.04

Mar 14, 2016

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.

Installing node LTS version on Ubuntu 14.04

Mar 14, 2016

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.

Getting started with responsive websites and JavaScript

Apr 3, 2015

In this post I'm going to describe two basic web pages I've been working on: 1) a basic responsive page, and 2) a responsive page that uses JavaScript to detect the current size of the screen. My goal here is to use basic HTML, CSS and JavaScript -- no js libraries -- to help myself learn JavaScript and responsive data visualization techniques. That said, I'm not an expert, and the examples should be considered with that in mind. Please comment at the end of the post if you have better, or different, ways of doing the same thing.

Installing Node.js and npm on Ubuntu 14.04

Jan 12, 2015

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.