Skip to content

Commit

Permalink
adds step documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
berkeleycole committed Jul 9, 2019
1 parent e8ca06c commit 777702a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The goal of this repo is be an example of a basic but functional app built on Express and Webpack.

If you want to follow along, start from master and look at the numbered branches of this project. Each one is a step along the path to creating a fully functional webpack setup.
If you want to follow along, start from master and look at the numbered branches of this project. Each one is a step along the path to creating a fully functional webpack setup. In each branch, there will be a documentation file that lists out the steps taken in that branch (each step is also a git commit if you look at the history) which you can use as a checklist when setting up your own projects.

## Get Up and Running

Expand Down
6 changes: 6 additions & 0 deletions STEP-1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Step 1 - Installing Webpack

1. Webpack is an npm package, so we need to install it. Webpack also comes with a CLI tool (command line tool), so we will install that as well.
```
npm i webpack webpack-cli
```

0 comments on commit 777702a

Please sign in to comment.