https://github.com/therealedsheenan/chitter
Twitter clone using typescript and graphql
https://github.com/therealedsheenan/chitter
apollo graphql type-graphql typescript
Last synced: 15 days ago
JSON representation
Twitter clone using typescript and graphql
- Host: GitHub
- URL: https://github.com/therealedsheenan/chitter
- Owner: therealedsheenan
- Created: 2018-12-27T18:16:04.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-12T01:42:58.000Z (over 3 years ago)
- Last Synced: 2025-03-16T05:12:39.383Z (about 1 year ago)
- Topics: apollo, graphql, type-graphql, typescript
- Language: TypeScript
- Size: 2.35 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chitter
Twitter clone using typescript and graphql
## Installation
```bash
$ npm install
```
## Running the app
```bash
# development
$ npm run start
# watch mode
$ npm run start:dev
# incremental rebuild (webpack)
$ npm run webpack
$ npm run start:hmr
# production mode
$ npm run start:prod
```
## Test
```bash
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
```