Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/torredefarol24/tm-mern-gql-ts

Express GraphQL example app in Typescript with React
https://github.com/torredefarol24/tm-mern-gql-ts

apollo cd ci continuous-deployment continuous-integration express-graphql graphql node react react-apollo react-graphql travis typescript

Last synced: 3 months ago
JSON representation

Express GraphQL example app in Typescript with React

Awesome Lists containing this project

README

        

# Express React Graphql (TS) App

#### Backend : Node (Express in Typescript)
#### CI/CD : Travis
#### Query : GraphQL
#### Frontend : React (TS)



Checklist

- Install Package Dependencies
- Build Api from source (Optional)

### Install Package Dependencies
```
$ cd api
$ yarn install
```

### Build Api (From Source)
```

# Running 'yarn install' builds the API from source automatically,
# However, if you've made changes, build it again by running :

$ cd api
$ yarn build
```

### Start Api (Dev Mode)
```
$ cd api
$ yarn watch-ts
$ yarn watch-js
```

### Start Api (Prod Mode)
```
$ cd api
$ yarn start
```