Skip to content

Commit

Permalink
Removes leading $ in install commands (apollographql#6334)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zauberbutter authored Apr 20, 2022
1 parent 5c5a443 commit 4afa1ce
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/source/integrations/middleware.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ You can call `server.getMiddleware` instead of `server.applyMiddleware` if you w
The following example is roughly equivalent to the [`apollo-server` example](#apollo-server) above.

```
$ npm install apollo-server-fastify apollo-server-core fastify graphql
npm install apollo-server-fastify apollo-server-core fastify graphql
```

<MultiCodeBlock>
Expand Down Expand Up @@ -356,7 +356,7 @@ You _must_ `await server.start()` before calling `server.createHandler`. You can
The following example is roughly equivalent to the [`apollo-server` example](#apollo-server) above.

```
$ npm install apollo-server-hapi @hapi/hapi graphql
npm install apollo-server-hapi @hapi/hapi graphql
```

<MultiCodeBlock>
Expand Down Expand Up @@ -402,7 +402,7 @@ You _must_ `await server.start()` before calling `server.applyMiddleware`. You c
The following example is roughly equivalent to the [`apollo-server` example](#apollo-server) above.

```
$ npm install apollo-server-koa apollo-server-core koa graphql
npm install apollo-server-koa apollo-server-core koa graphql
```

<MultiCodeBlock>
Expand Down Expand Up @@ -453,7 +453,7 @@ You can call `server.getMiddleware` instead of `server.applyMiddleware` if you w
The following example is roughly equivalent to the [`apollo-server` example](#apollo-server) above. You should put this code in a file called `index.js` in order for the `micro` CLI to find it.

```
$ npm install apollo-server-micro micro graphql
npm install apollo-server-micro micro graphql
```

<MultiCodeBlock>
Expand Down Expand Up @@ -490,7 +490,7 @@ This package is a layer around `apollo-server-express`, which uses the [`@vendia
The following example is roughly equivalent to the [`apollo-server` example](#apollo-server) above.

```
$ npm install apollo-server-lambda graphql
npm install apollo-server-lambda graphql
```

<MultiCodeBlock>
Expand All @@ -516,7 +516,7 @@ Because the Cloud Functions Node.js runtime uses Express, `apollo-server-cloud-f
The following example is roughly equivalent to the [`apollo-server` example](#apollo-server) above.

```
$ npm install apollo-server-cloud-functions graphql
npm install apollo-server-cloud-functions graphql
```

<MultiCodeBlock>
Expand All @@ -541,7 +541,7 @@ For more details on using `apollo-server-cloud-functions`, see the [documentatio
The following example is roughly equivalent to the [`apollo-server` example](#apollo-server) above.

```
$ npm install apollo-server-azure-functions graphql
npm install apollo-server-azure-functions graphql
```

<MultiCodeBlock>
Expand Down

0 comments on commit 4afa1ce

Please sign in to comment.