https://github.com/nikhilunni511/graphql-dev
CLI tool for creating Apollo server.
https://github.com/nikhilunni511/graphql-dev
apollo-server graphql graphql-cli typescript
Last synced: about 2 months ago
JSON representation
CLI tool for creating Apollo server.
- Host: GitHub
- URL: https://github.com/nikhilunni511/graphql-dev
- Owner: nikhilunni511
- License: mit
- Created: 2020-03-30T18:05:32.000Z (almost 6 years ago)
- Default Branch: development
- Last Pushed: 2023-02-03T05:31:06.000Z (about 3 years ago)
- Last Synced: 2025-06-19T00:02:06.909Z (9 months ago)
- Topics: apollo-server, graphql, graphql-cli, typescript
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/graphql-dev
- Size: 258 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# graphql-dev
GraphQL CLI tool for creating apollo-server, typedefs, resolvers and datasources and more.
## Installation
To install the GraphQL CLI tool:
```
$ npm install -g graphql-dev
```
## Use
### Getting started
1. cd /project-path
2. Run `graphql-dev server` to create a new apollo-server.
### What's next
Run `graphql-dev -l` to list all available commands:
```
$ graphql-dev -l
Available commands:
graphql-dev server
```
Run `graphql-dev --help` to learn more about each command. For example:
```
$ graphql-dev server --help
Usage:
graphql-dev server [options] []
```
Refer to [Create a simple apollo-server](https://github.com/nikhilunni511/docs/blob/master/npm-graphql-dev/README.md#how-to-setup-a-apollo-server-using--graphql-dev)
for more information.