Skip to content

Commit

Permalink
Add link to TypeScript page in Getting Started (#6817)
Browse files Browse the repository at this point in the history
This also updates our min version of Node that we ask for
  • Loading branch information
ianschmitz authored Apr 14, 2019
1 parent 431ccf9 commit 7154487
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docusaurus/docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Just create a project, and you’re good to go.

## Creating an App

**You’ll need to have Node >= 6 on your local development machine** (but it’s not required on the server). You can use [nvm](https://github.com/creationix/nvm#installation) (macOS/Linux) or [nvm-windows](https://github.com/coreybutler/nvm-windows#node-version-manager-nvm-for-windows) to easily switch Node versions between different projects.
**You’ll need to have Node >= 8.10 on your local development machine** (but it’s not required on the server). You can use [nvm](https://github.com/creationix/nvm#installation) (macOS/Linux) or [nvm-windows](https://github.com/coreybutler/nvm-windows#node-version-manager-nvm-for-windows) to easily switch Node versions between different projects.

To create a new app, you may choose one of the following methods:

Expand Down Expand Up @@ -62,6 +62,11 @@ yarn create react-app my-app

_`yarn create` is available in Yarn 0.25+_


### Creating a TypeScript app

Follow our [Adding TypeScript](adding-typescript.md) documentation to create a TypeScript app.

## Output

Running any of these commands will create a directory called `my-app` inside the current folder. Inside that directory, it will generate the initial project structure and install the transitive dependencies:
Expand Down

0 comments on commit 7154487

Please sign in to comment.