Skip to content

Instantly share code, notes, and snippets.

@joemercer
joemercer / getting-started-with-javascript.md
Last active August 29, 2015 14:06
Setting up the development environment for contributing to a Javascript project

[!!! This is in active development. Don't trust it... yet ;)]

This is a tutorial to help people get up and running with their Javascript development environment so that they can collaborate with me on projects. If you have no Javascript experience, consider starting with the Javascript language tutorial at W3 Schools.

Getting started

In this section we will bootstrap a Javascript application from scratch using Yeoman. We will loosely be following the Yeoman tutorial.

Keybase proof

I hereby claim:

  • I am joemercer on github.
  • I am jomrcr (https://keybase.io/jomrcr) on keybase.
  • I have a public key whose fingerprint is D8C6 BA9B 4805 39EA 3890 4D48 62BA 4C73 EEDA 6A9B

To claim this, I am signing this object:

@joemercer
joemercer / installing-node.md
Last active August 29, 2015 14:02
Installing Node/Npm using Nvm

Installing Node/Npm using Nvm

We will use Nvm to manage our Node and Npm installation. Using Nvm allows us to easily specify the version of Node and Npm that we want to use in a project.

1. Install Nvm

Run this script to install Nvm and update your .bash_profile:

curl https://raw.githubusercontent.com/creationix/nvm/v0.7.0/install.sh | sh