Skip to content

Commit

Permalink
chore(readme): add improved install information (reactstrap#1220)
Browse files Browse the repository at this point in the history
* Update README.md

Update installation steps with package runner tool, which can avoid installing create-react-app globally,  that comes with npm 5.2+
  • Loading branch information
arung86 authored and gergely-nagy committed Sep 14, 2018
1 parent b52f7b3 commit 35b4dd7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,20 @@ Follow the [create-react-app instructions](https://github.com/facebook/create-re

### tl;dr

```
npx create-react-app my-app
cd my-app/
npm start
```
or, if npx (Node >= 6 and npm >= 5.2 ) not available

```
npm install -g create-react-app
create-react-app my-app
cd my-app/
npm start
```
```

Then open [http://localhost:3000/](http://localhost:3000/) to see your app. The initial structure of your app is setup. Next, let's [add reactstrap and bootstrap](#adding-bootstrap).

Expand Down

0 comments on commit 35b4dd7

Please sign in to comment.