Skip to content

Instantly share code, notes, and snippets.

@shobhitchittora
Last active July 22, 2018 11:08
Show Gist options
  • Save shobhitchittora/c69bd4f601b685f0d53303c0440026f5 to your computer and use it in GitHub Desktop.
Save shobhitchittora/c69bd4f601b685f0d53303c0440026f5 to your computer and use it in GitHub Desktop.
initial project setup for gRPC tutorial
{
"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