Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/crazyoptimist/grpc-nodejs-poc
https://github.com/crazyoptimist/grpc-nodejs-poc
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/crazyoptimist/grpc-nodejs-poc
- Owner: crazyoptimist
- Created: 2022-10-17T01:04:35.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-20T07:50:07.000Z (about 2 years ago)
- Last Synced: 2024-10-03T21:41:15.757Z (about 1 month ago)
- Language: JavaScript
- Size: 104 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gRPC Node.js POC
### Generate code from protobuf
```bash
make generate proto=${file_name}
```### Database migrations/seeds
Make a new migration file:
```bash
yarn knex migrate:make blogs
```Make a new seed file:
```bash
yarn knex seed:make blogs
```Everything is already in the knex doc :D