npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

quant-grpc-docs

v1.3.9

Published

gRPC API Documentation

Downloads

17

Readme

Interactive gRPC API Documentation

NPM JavaScript Style Guide

We're like Swagger UI, but for gRPC APIs. Give us a star if you like the project.

Live demo

Live demo is available at https://gendocu-demo.web.app/.

Quickstart

docker run -rm --network host \
  -v <your-proto-root>:/input \
  -v $(pwd)/output:/output \
  gendocu/grpc-docs

Install

Only for node 12+ (you can check your node version with node -v)

npm install --save grpc-docs

Or

yarn add grpc-docs

Usage

You can find all the integration types in example/src/App.tsx file.

You can use this widget standalone or with GenDocu Cloud gRPC CI/CD. Feature comparison is below.

Running example

  1. Clone this project
  2. Go to example directory and use yarn start to run the frontend
  3. In case you want be able to modify the library open the repository root directory in second terminal and run yarn start

Standalone within existing react frontend

  1. Install grpc-docs - instruction in Setup section
  2. Generate json description from protobuf api with project protoc-gen-doc: protoc --doc_out=./ --doc_opt=json,description.json *.proto
  3. Inside your React project create API Reference component - you can see example of usage in example/src/App.tsx
import React from 'react'

import { GRPCSelfGeneratedAPIReference } from 'grpc-docs'

const Example = () => {
  // return <GRPCSelfGeneratedAPIReference file='url-to-json-description-of-api'/>

  // return <GRPCSelfGeneratedAPIReference definition='A json string definition that got generated by protoc'/>

  return <GRPCSelfGeneratedAPIReference file='example-descriptors/description.json'/>
}
  1. [optional] You can also provide the environments and authentication description - add scheme='path-to-scheme-file.yaml'. Use GenDocu Cloud Api Specification Scheme. You can find example file here.

Hosting the generated protoc JSON behind auth.

You can provide a protoc definition as text directly to the <GRPCSelfGeneratedAPIReference /> component. So you should be able to fetch your hosted json with the correct headers and provide it to the compoenent in the definition prop.

import React from 'react'

import { GRPCSelfGeneratedAPIReference } from 'grpc-docs'

const Example = async () => {
  const resp = await fetch('my-company.com/protoc.json')
  const definition = await resp.text()

  return <GRPCSelfGeneratedAPIReference definition={definition}/>
}

With GenDocu

  1. Install grpc-docs - instruction in Setup section
  2. Create a project on Gendocu Cloud
  3. Use component inside your React project
import React from 'react'

import { GRPCGenDocuAPIReference } from 'grpc-docs'

const App = () => {
  //return <GRPCGenDocuAPIReference project='your-gendocu-project' organization='your-organization'/>
  return <GRPCGenDocuAPIReference project='LibraryApp' organization='gendocu'/>
}
export default App;

You can also implement your own backend wrapper - API documentation is available here.

Feature comparison

| Feature | Standalone gRPC-docs| gRPC-docs with GenDocu | GenDocu Developer Portal | | --- | --- | --- | --- | | Setup steps | ✅ | ✅ | ✅ | | API Reference | ✅ | ✅ | ✅ | | Code snippets | ❌ | ✅ | ✅ | | Password protected documentation | ❌ | ✅ | ✅ | | Programming languages | 1 | 6 | 6 | | Environment selection | ❌^ | ❌^ | ✅ | | Authentication description | ❌^ | ❌^ | ✅ | | Try it out | ❌ | ❌^ | ✅ | | RBAC protected documentation | ❌ | ❌ | ✅ | | SSO | ❌ | ❌ | ✅ |

^ to be implemented

Customize style

To create your own styled documentation change the implementation in style/default - you can find there all the files implementing the UI of documentation. We strongly recommend to create own style directory, like style/my-style instead of overwriting the style/default components.

Troubleshooting

  1. ... is not allowed. Add this origin in your documentation settings. You have to add the host in your GenDocu project settings. If the project is not owned by you, ask project owner.

License

MIT © gendocu-com