diff --git a/docs/source/essentials/get-started.md b/docs/source/essentials/get-started.md index d65f3cc2f34..07e612b812c 100644 --- a/docs/source/essentials/get-started.md +++ b/docs/source/essentials/get-started.md @@ -12,12 +12,11 @@ If you're an advanced user who would like to configure Apollo Client from scratc First, let's install some packages! ```bash -npm install apollo-boost react-apollo graphql-tag graphql --save +npm install apollo-boost react-apollo graphql --save ``` - `apollo-boost`: Package containing everything you need to set up Apollo Client - `react-apollo`: View layer integration for React -- `graphql-tag`: Necessary for parsing your GraphQL queries - `graphql`: Also parses your GraphQL queries > If you'd like to walk through this tutorial yourself, we recommend either running a new React project locally with [`create-react-app`](https://reactjs.org/docs/add-react-to-a-new-app.html) or creating a new React sandbox on [CodeSandbox](https://codesandbox.io/). For reference, we will be using [this Launchpad](https://launchpad.graphql.com/w5xlvm3vzz) as our GraphQL server for our sample app, which pulls exchange rate data from the Coinbase API. If you'd like to skip ahead and see the app we're about to build, you can view it on [CodeSandbox](https://codesandbox.io/s/nn9y2wzyw4).