
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@vroomlabs/grpc-docs
Advanced tools
Command line utility to launch or debug Google's Extensible Service Proxy
Auto-generator for markdown documentation
$ npm install --save-dev @vroomlabs/grpc-docs
./node_modules/.bin/grpc-docs
package.json script:
"scripts": {
"doc": "grpc-docs"
}
If you are not already using gsdk-deploy, create the following deploy.yaml file in the root of your project.
# =============================================================================
# = Deployment configuration
# =============================================================================
dev:
name: "search"
host: "search-dev.catalog.com"
google-project: "my-google-project-id"
endpointFormat: ""
env: []
# =============================================================================
prod:
extends: dev
google-project: "my-google-project-id"
host: "search.catalog.com"
# =============================================================================
Modify package.json to include any or all of the following:
"grpc-docs": {
"source": "./config/;./src/;" // search path for all source files, default = /src;/config
"deploy": "./deploy.yaml", // where to find the above deploy.yaml file
"docker": "./Dockerfile", // where to find the associated docker file for run/env info
"proto": "./proto/", // where to find proto files (if any)
"output": "./README.md" // where to write the output documentation file
}
Currently there is only one thing that can be manually written and automatically injected into the output, examples. Create a file named "examples.js" anywhere in the source search path. Export each example as a function from that source file.
/**
* A simple example method exists inside a file named "examples.js"
* @param {string} text - A parameter we use in this example
*/
function exampleMethodName(text) {
// do something.
}
FAQs
Command line utility to launch or debug Google's Extensible Service Proxy
We found that @vroomlabs/grpc-docs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.