Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 578 Bytes

01_installation.markdown

File metadata and controls

24 lines (16 loc) · 578 Bytes

01 Installation

I am going to assume you already have Node.js + NPM install on your system. If you don't have it yet take a look at this guide.

Lets setup a project directory first.

mkdir portfolio
cd portfolio

Next we'll init a NPM module.

npm init

This will create an package.json which we'll use to save our dependencies.

npm install express, jade, jungles --save

Now that we have our dependencies and project directory lets create a base application next.