diff --git a/README.md b/README.md index c3e1e8384..44709f98d 100644 --- a/README.md +++ b/README.md @@ -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).