diff --git a/CHANGELOG.md b/CHANGELOG.md
index cdb8c93921..39426c3968 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -309,7 +309,17 @@ Note: For details on NgModules you can read the Angular docs on them [here](http
#### Copying Your Project to a New Project
-1. Install the latest Ionic CLI:
+1. Ensure that you're using npm version 3.x by running:
+
+ ```
+ npm --version
+ ```
+
+ If you are not running 3.x, the easiest way to update is to install the [latest version of Node.js](https://nodejs.org/en/).
+
+ You can also update `npm` by following [these instructions](https://docs.npmjs.com/getting-started/installing-node#updating-npm).
+
+2. Install the latest Ionic CLI:
```
npm install -g ionic
@@ -317,38 +327,48 @@ Note: For details on NgModules you can read the Angular docs on them [here](http
**Important:** if you have installed the `beta` cli you should run `npm uninstall -g ionic` first. You need version `2.1.0` for this release. Check your `cli` version by running `ionic -v` in the command line.
-2. Create a new Ionic 2 RC0 app:
+3. Create a new Ionic 2 RC0 app:
```
ionic start --v2 myApp
```
-3. Copy/paste all of your pages from `app/pages/` of your `beta.11` app to `src/pages/`, providers from `app/providers` to `src/providers`, pipes from `app/pipes` to `src/pipes` and any custom components to `src/components` in the new RC0 app.
+4. Copy/paste all of your pages from `app/pages/` of your `beta.11` app to `src/pages/`, providers from `app/providers` to `src/providers`, pipes from `app/pipes` to `src/pipes` and any custom components to `src/components` in the new RC0 app.
-4. Modify all `templateUrl`'s to be relative to the `.ts` file. For example in `app.component.ts` the url should change from `build/app.html` to `app.html` and in a page referencing `about.html` from `build/pages/about/about.html` to `about.html`.
+5. Modify all `templateUrl`'s to be relative to the `.ts` file. For example in `app.component.ts` the url should change from `build/app.html` to `app.html` and in a page referencing `about.html` from `build/pages/about/about.html` to `about.html`.
-5. Import and add each of your pages to the `declarations` array and the `entryComponents` array in `src/app/app.module.ts`.
+6. Import and add each of your pages to the `declarations` array and the `entryComponents` array in `src/app/app.module.ts`.
-6. Import and add each of your custom components to the `declarations` array in `src/app/app.module.ts`.
+7. Import and add each of your custom components to the `declarations` array in `src/app/app.module.ts`.
-7. Import and add each of your providers to the `providers` array in `src/app/app.module.ts`.
+8. Import and add each of your providers to the `providers` array in `src/app/app.module.ts`.
-8. Remove any use of the `providers` entry in `@Component` from your pages.
+9. Remove any use of the `providers` entry in `@Component` from your pages.
-9. Change any uses of the `private` TypeScript keyword to `public`.
+10. Change any uses of the `private` TypeScript keyword to `public`.
-10. Change `` to `` according to [these instructions](#new-behavior-of-button).
+11. Change `` to `` according to [these instructions](#new-behavior-of-button).
-11. Pass colors to the `color` attribute : `