Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/torredefarol24/tm-mern-gql-ts
- Owner: torredefarol24
- Created: 2019-02-17T16:54:33.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-08T10:19:52.000Z (almost 6 years ago)
- Last Synced: 2024-07-29T17:44:10.373Z (6 months ago)
- Topics: apollo, cd, ci, continuous-deployment, continuous-integration, express-graphql, graphql, node, react, react-apollo, react-graphql, travis, typescript
- Language: TypeScript
- Size: 592 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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
```