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

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

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
```