https://github.com/mirajehossain/nodejs-grpc-example-typescript
gRPC example with nodejs/typescript using postgres database
https://github.com/mirajehossain/nodejs-grpc-example-typescript
grpc grpc-node node nodejs nodejs-grpc postgres sequelize typescript
Last synced: about 1 month ago
JSON representation
gRPC example with nodejs/typescript using postgres database
- Host: GitHub
- URL: https://github.com/mirajehossain/nodejs-grpc-example-typescript
- Owner: mirajehossain
- Created: 2020-07-19T19:32:43.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-02T05:55:09.000Z (over 4 years ago)
- Last Synced: 2025-03-27T09:23:07.246Z (about 2 months ago)
- Topics: grpc, grpc-node, node, nodejs, nodejs-grpc, postgres, sequelize, typescript
- Language: JavaScript
- Homepage:
- Size: 22.5 KB
- Stars: 7
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Nodejs gRPC example with Typescript
### Installation
```
// clone the project
$ git clone https://github.com/mirajehossain/nodejs-grpc-example-typescript.git
$ cd nodejs-grpc-example-typescript// install dependencies
$ npm install
```### Generate pb files
```
// run the script that will generate pb files
$ ./src/scripts/protoc.sh
```### Run migration
```
npm run migrate
```### Build the project
```
npm run build
```
### Start the project
```
npm run start
```