https://github.com/mh-rafi/express-graphql-seed
A starter kit for building REST api with Express and queries with GraphQL
https://github.com/mh-rafi/express-graphql-seed
express graphql graphql-js nodejs rest-api restful-api
Last synced: 2 months ago
JSON representation
A starter kit for building REST api with Express and queries with GraphQL
- Host: GitHub
- URL: https://github.com/mh-rafi/express-graphql-seed
- Owner: mh-rafi
- License: mit
- Created: 2017-07-09T20:56:30.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-10T12:05:48.000Z (almost 9 years ago)
- Last Synced: 2025-01-13T18:50:54.121Z (over 1 year ago)
- Topics: express, graphql, graphql-js, nodejs, rest-api, restful-api
- Language: JavaScript
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `express-graphql-seed` — the seed for REST api and GraphQL
## Getting started
#### clone `express-graphql-seed` repository using git.
```
git clone https://github.com/mh-rafi/express-graphql-seed.git
cd express-graphql-seed
```
#### Install Dependencies
```
npm install
```
#### Run the Application
```
npm start
```
#### Build the Application
```
npm build
```
### Directory structure
```
config/
env/
index.js
development.js
express.js
passport-config.js
validation.js
winston.js
server/
controllers/
auth.js
user.js
graphql/
index.js
queries.js
types.js
helpers/
APIError.js
models/
user.js
routes/
index.js
auth.js
user.js
index.js
```