[wp|0.2] Preparation Setup

Apollo Tang
1 min readJan 26, 2017

--

_________________________________________

Make sure you are using at least node version 6 [1].

Create a folder to house you project with webpack setup.

$ mkdir setup-webpack && cd setup-webpack

Initialized your folder with node package manager.

$ npm init -y

In the above, the -y flag, or (dash dash yes) will use only defaults and not prompt you for any configuration questions.

Okay, you are ready to go!

Navigation: [ < previous ][ Table of Content ][ next > ]

____________________________________
[1]
You can use node version manager to install and switch between various node version.

--

--