Skip to content
This repository was archived by the owner on Jan 26, 2019. It is now read-only.

Commit 4c49969

Browse files
authored
Merge pull request #380 from codereviewvideos/patch-1
Makes getting started a one-liner
2 parents c716736 + 5b4e661 commit 4c49969

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Diff for: README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,13 @@ _Do you know react and want to try out typescript? Or do you know typescript and
1010
## tl;dr
1111

1212
```sh
13-
npm install -g create-react-app
13+
npx create-react-app my-app --scripts-version=react-scripts-ts
1414

15+
# or if you prefer:
16+
npm install -g create-react-app
1517
create-react-app my-app --scripts-version=react-scripts-ts
18+
19+
# then:
1620
cd my-app/
1721
npm start
1822
```

0 commit comments

Comments
 (0)