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

supersamples

v1.4.1

Published

Up-to-date documentation for your Node.js REST API

Downloads

170

Readme

logo

Documentation and samples for your Node.js RESTful API

NPM License

Build Status Dependencies Dev dependencies

supersamples is a Mocha reporter that understands Supertest to generate reliable and up-to-date API samples. In a nutshell:

  • define concrete request/response examples in your test suite
  • if you need to, use mocks to make sure you fully control the API responses
  • add a few explanations in Markdown
  • choose from a few output formats
  • get high-level API documentation that's always up-to-date!

Works with any Node.js http.Server, like Express or Restify

What will my tests look like?

Nothing special! Simply use supertest in your test suite, and supersamples will generate the request/response documentation for you!

it(`
# Get list of sports
- list is ordered alphabetically
- doesn't return sports with no active competitions
`, function (done) {
  request(server)
    .get('/sports')
    .set('Accept', 'application/json')
    .expect(200)
    .expect('Content-Type', /json/)
    .expect(
      sports: [
        { id: 1, name: 'Soccer' }
        { id: 2, name: 'Tennis' }
      ]
    )
    .end(done)
})

What will the docs look like?

supersamples comes with several renderers built-in:

  • html generates a multi-page static HTML website
  • markdown to generate a single Markdown page you can easily upload to Github
  • json to generate JSON metadata you can process later
  • postman to generate a postman collection for your API

See a live example of the HTML output over here.

How do I set it up?

npm install supersamples --save-dev

Have a look at the example folder to get started. You can add tests to the usual test folder, or keep them separate if you want. Simply run Mocha with the provided reporter:

./node_modules/.bin/mocha --reporter supersamples path/to/tests

You also need to specify documentation options in a supersamples.opts file at the root. This file has to be valid JSON, but also supports comments:

{

  // Base URL for the API
  "baseUrl": "http://my-api.com",

  // Mocha reporter to display test results
  // e.g. Dot, TAP, Spec...
  "reporter": "Dot",

  // One or more rendering modes
  // And their associated options
  "renderers": {

    "<name>": { ... }
    "<name>": { ... }

  }

}

See each renderer for the set of available options:

What goes in the docs?

Well it depends on the renderer you choose, but they all work off the same set of data:

The hierarchy

The nested suite of describe() statements that lead to your test becomes the hierarchy / breadcrumbs. In the HTML renderer, the first 2 levels make up the navigation sidebar.

Your markdown content

The it() statements can contain valid Markdown, which make up the description of each example.

A name for each sample

By default, the content of the it also becomes your sample name. This is used in the JSON renderer to help you identify samples. You can also override the name with

it('gets a list of sports', function () {
  this.supersamples = { name: 'valid list' }
  request(server)
    .get('/sports')
    .end(done)
})

Ignoring Requests

Supersamples instruments every request that goes through supertest by default. If you are making multiple requests per it, sometimes the results can be a bit problematic as request and responses get merged.

You can explicitly ignore certain requests from being captured by setting the following header

it('gets a single sport', function (done) {
  request(server)
    .get('/sports')
    .set('SupersamplesIgnore', 'true')
    .end(function (err, response) {
      request(server)
        .get(`/sports/${response.body[0].id}`)
        .end(done)
    })
})

Ignoring whole tests

Perhaps you include you docs specs in the same tests as other integration tests that you don't want appearing in your docs

You can exclude them with the following

it('backdoor entrance to get a password', function (done) {
  this.supersamples = { ignore: true }
  request(server)
    .get('/supersecretthing')
    .end(done)
})

The requests

  • The request headers, including custom ones. However it excludes typically irrelevant headers for the context of documentation (accept-encoding: gzip, deflate, host: http://localhost:1234...).
  • The request payload & file attachments.

The responses

  • The response status code, regardless of any expect().
  • The response headers, but only if they were mentioned in expect(). The reason is that many frameworks will add dozens of default headers, which could seriously clutter the docs.
  • The actually response body, regardless of any expect(). Note that even if they don't affect the docs, expectations are checked during the generation process. We 100% recommend that you add some to give extra confidence that the HTTP response are correct.

What doesn't it do?

supersamples DOES NOT provide a way to describe every path or query string parameter. It's meant to give you reliable but low-cost API samples. If you want a very detailed API description, you might like other tools better:

    - tools like Apiary or ApiDoc let you document your API in text-format (for example Markdown or JavaScript comments). Just remember to keep these up to date!

    - tools like Swagger provide a JavaScript API to define your routes. It can generate docs that are always up-to-date, if you don't mind using their syntax instead of vanilla Express or Restify.

In our current project, we actually use swagger and supersamples together to generate formal API specs as well as request/response examples, and display both side by side in our API portal.