Last active
July 22, 2018 11:08
-
-
Save shobhitchittora/c69bd4f601b685f0d53303c0440026f5 to your computer and use it in GitHub Desktop.
initial project setup for gRPC tutorial
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "todo-app-grpc", | |
"version": "1.0.0", | |
"description": "A sample client and server to demonstrate use of gRPC with NodeJS.", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1", | |
"start:server": "node src/server.js", | |
"start:client": "node src/client.js" | |
}, | |
"repository": { | |
"type": "git", | |
"url": "git+https://github.com/shobhitchittora/todo-app-grpc.git" | |
}, | |
"keywords": [], | |
"author": "", | |
"license": "ISC", | |
"bugs": { | |
"url": "https://github.com/shobhitchittora/todo-app-grpc/issues" | |
}, | |
"homepage": "https://github.com/shobhitchittora/todo-app-grpc#readme", | |
"dependencies": { | |
"@grpc/proto-loader": "^0.1.0", | |
"grpc": "^1.13.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment