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

openapi3-generator

v0.13.0

Published

Use your API OpenAPI 3 definition to generate code, documentation, and literally anything you need.

Downloads

624

Readme

Install

To use it from the CLI:

npm install -g openapi3-generator

Requirements

  • Node.js v7.6+

Usage

From the command-line interface (CLI)

  Usage: og [options] <openapiFileOrURL> <template>


  Options:

    -V, --version                  output the version number
    -o, --output <outputDir>       directory where to put the generated files (defaults to current directory)
    -t, --templates <templateDir>  directory where templates are located (defaults to internal templates directory)
    -b, --basedir <baseDir>        directory to use as the base when resolving local file references (defaults to OpenAPI file directory)
    -h, --help                     output usage information

Examples

The shortest possible syntax:

og openapi.yaml markdown

Specify where to put the generated code:

og -o ./my-docs openapi.yaml markdown

Templates

Creating your own templates

Templates are the sources where the result will be generated from. There are already some templates you can use to generate code and documentation.

The files in your template can be of the following types:

  1. Static: This kind of files will be simply copied to the output directory.
  2. Templates: This kind of files will be compiled using Handlebars, and copied to the output directory.
  3. Path templates: This kind of files will be compiled using Handlebars, but it will generate one file per OpenAPI path.

Assuming we have the following OpenAPI Spec:

openapi: "3.0.0"
info:
  version: 1.0.0
  title: OpenAPI Petstore
  license:
    name: MIT
servers:
  - url: http://petstore.openapi.io/v1
paths:
  /pet:
    get:...
    post:...
  /pet/{petId}:
    get:...
  /user/login:
    post:...
  /user/{username}:
    get:...
    put:...
    delete:...
...

And some template files like this:

|- index.js            // This file contains static code, e.g. starting a webserver and including ./api/index.js
|+ api/
 |- index.js.hbs       // This is a static template, it contains placeholders that will be filled in, e.g. includes for each file in routes
 |+ routes/
  |- $$path$$.route.js.hbs      // This file will be generated for each operation and contains skeleton code for each method for an operation.
  |+ $$path$$/                  // This folder will also be generated for each operation.
    |- route.js.hbs             // This is another example of an operation file.

The first important thing to notice here is the variable notation in $$path$$.route.js.hbs. It will be replaced by the name of the path.

This example also shows $$path$$ used in a folder name - the generated folder names here will replace $$path$$ with the name of the path (in kebab-case).

In this example the generated directory structure will be like this:

|- index.js            // This file still contains static code like before.
|+ api/
 |- index.js           // This file will now e.g. have included the two files in routes.
 |+ routes/
  |- pet.route.js      // This file contains the code for methods on pets.
  |                    // (e.g. getPet, postPet, getPetByPetId).
  |- user.route.js     // This file will contain the code for methods on users.
  |                    // (e.g. postUserLogin, getUserByUsername, putUserByUsername, deleteUserByUsername).
  |+ pet/
   | - route.js        // this file also contains the code for methods on pets.
  |+ user/
   | - route.js        // this file also contains the code for methods on users.

Template file extensions

You can (optionally) name your template files with .hbs extensions, which will be removed when writing the generated file. e.g. index.js.hbs writes index.js. index.js would also write to index.js, if you prefer to omit the hbs extension.

The only case where the .hbs extension isn't optional would be if you are writing handlebars templates with the templates. In that case the the template would need the extension .hbs.hbs. usertpl.hbs.hbs writes usertpl.hbs (but usertpl.hbs as a source would write usertpl with no extension).

Template file content

The generator passes the OpenAPI spec to template files, so all information should be available there. In addition to that, the code generator adds a bit more data that can be helpful.

Examples:

Dynamically require files in JavaScript
{{#each @root.openapi.endpoints}}
const {{.}} = require('./routes/{{.}}.route.js')
{{/each}}

will produce (using the OAS Spec example from above):

const pet = require('./routes/pet.route.js')
const user = require('./routes/user.route.js')

Data passed to Handlebars templates

| Param | Type | Description | | --- | --- | --- | |openapi|object|The OpenAPI spec.| |openapi.endpoints| object | All first level endpoints (e.g pet and user) |

Custom handlebars helpers

If your template needs Handlebars helpers, you can define them in a directory called .helpers inside your template.

Check out some examples in the markdown template.

Using handlebars partials

If you want to use partials in your template, define them in a directory called .partials inside your template.

Check out some examples in the markdown template.

The name of the partial will be obtained from the file name, converted to camel case. So, for instance, if the file name is my-partial.js, you can use the partial with {{> myPartial}}.

Authors