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

organic-express-api-doc

v1.0.0

Published

Organelle for generating documentation by runtime reflection of express mounted route handlers and their source code.

Downloads

5

Readme

organic-express-api-doc v0.3.0

Organelle for generating documentation by runtime reflection of express mounted route handlers and their source code.

dna

{
  "source": "node_modules/organic-express-api-doc",
  "reactOn": ["ExpressServer"],
  "mountOn": "/api-docs",
  "routes": {
    "organic-api-routes": "@processes.index.plasma.organic-api-routes"
  },
  "docsMetadata": {
    "source": "docs/api",
    "autopopulate": false,
    "renderAutopopulatedDocs": false,
    "populateFilename": "api.md"
  },
  "log": false,
  "liveTemplateReload": false,
  "templatePath": String // defaults to path.join(organic-express-api-doc, "../template/index.html")
}

routes property

Its value is used to build organelles responsible for express routes mounting.

All organelles are expected to reactOn and to emitReady. Additionally log: false is applied to their corresponding dna before triggering their build.

docsMetadata property

Indicates additional metadata information by default stored in markdown files where api routes are matched as follows

... any markdown content ...
## METHOD route
... markdown content for api action
...

So for example given the markdown bellow:

# markdown file title

## GET /api/resource

this text will be merged as description for `GET /api/resource` action,
other supported methods are "POST", "PUT", "DELETE" and "ALL"

## PUT /api/resource/:url_param ? :query_params

example markdown metadata description for action with url and query params.

### url params

* :url_param

### query params

* :query_params

Will be extracted metadata information for the following routes:

  • GET /api/resource
  • PUT /api/resource/:url_param

Notice that methods and urls should exactly match to your mounted express route handlers (case sensitive ;)

autopopulate property

When enabled will intercept all incoming requests and their responses and upon kill chemical will dump at dna.docsMetadata {.source} \ {.populateFilename}.json json data documentation with samples 'schemified'.

renderAutopopulatedDocs property

When enabled will load and render dna.docsMetadata {.source} \ {.populateFilename}.json json data documentation into dna.docsMetadata {.source} \ {.populateFilename} markdown file suitable for parsing by docsMetadata pipeline.

Noteice that this happens when the organelle is constructed, therefore it won't output anything if the json file is missing.

under-the-hood

the concept

sampling routes

  1. load sampled routes metadata if exists
  2. intercept all incoming http requests and their respective responses
  3. convert their properties (headers, body, ...) to a schema-like structures
  4. consolidate requests/responses into samples per method : route
  5. store sampled routes metadata

structure routes map

  1. intercept Express app's mount methods (all, get, post, ...)
  2. analyze the handlers passed
  3. stored sampled routes metadata is loaded and trasnformed to markdown file
  4. load markdown files and transform them to routes metadata
  5. generate in-memory documentation structure of analyzed routes forming their respective apis with their routes metadata

documentation rendering

  1. mount route handler on Express app
  2. respond with in-memory documentation structure transformed as html+css+js to incoming requests