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 🙏

© 2026 – Pkg Stats / Ryan Hefner

d360

v1.1.4

Published

Document360 official command-line interface (CLI)

Readme

The d360 package provides the capability to both manage and synchronize your API Definition with Document360. By utilizing this package within Document360, you will be able to effortlessly generate API documentation for both internal and external consumers, automatically generated from your API definition files

Table of Contents

Setup

In order to install our package, it is required that you have Node.js already installed on your system. Once Node.js is successfully installed, you can proceed to directly install our package from the npm registry.

npm install -g d360

Note: We recommend using Node.js v14 or later. After a global install you can verify the CLI is available by running d360 --help. If the command is not found, ensure your global npm bin directory is on your PATH.

Commands

Our npm package includes a list of available commands, which are as follows:

  • apidocs - Generate API Documentation from your API Definition file
  • apidocs:resync - Resync your API Definition

apidocs

By utilizing the 'apidocs' command, you will have the ability to generate API documentation directly from your API Definition file.

d360 apidocs --apiKey=c92e71ab-ebdf-4007-89ed-5d47493052cd
             --userId=3340e95e-2b68-4a3f-a8c9-124bcaec9972
             --versionId=d486783f-b833-446e-aa71-615ac51392c3
             --path=https://petstore.swagger.io/v2/swagger.json

| Options | Description | | ------------------ | ----------------------------------------------------------------------------------------------------------------------------- | | apiKey string | Project API Key | | userId string | User Id that's used to generate API Docs | | versionId string | Project Version Id | | apihubUrl string | APIHUB Base URL. The default value for this parameter is 'https://apihub.document360.io' | | path string | File path of your respective API Reference | | force boolean | Force import your API Reference. It will import even if there are errors or warnings present within your specification files. |

apidocs:resync

With the 'apidocs:resync' command, you are able to update or resynchronize your API Definition.

d360 apidocs:resync --apiKey=c92e71ab-ebdf-4007-89ed-5d47493052cd
                    --userId=3340e95e-2b68-4a3f-a8c9-124bcaec9972
                    --apiReferenceId=d486783f-b833-446e-aa71-615ac51392c3
                    --path=https://petstore.swagger.io/v2/swagger.json

| Options | Description | | ----------------------- | ----------------------------------------------------------------------------------------------- | | apiKey string | Project API Key | | userId string | User Id that's used to resync API Reference | | apiReferenceId string | API Reference Id to resync | | apihubUrl string | APIHUB Base URL. The default value for this parameter is 'https://apihub.document360.io' | | path string | File path of your respective API Definitions | | force boolean | Force resync your API Reference. It will resync even your spec files has errors and warnings |

apidocs:validate

With the 'apidocs:validate' command, you will be able to validate your OpenAPI Specification(OAS) file.

d360 apidocs:validate --apiKey=c92e71ab-ebdf-4007-89ed-5d47493052cd
                      --apihubUrl=https://apihub.document360.io
                      --path=https://petstore.swagger.io/v2/swagger.json

| Options | Description | | ------------------ | ---------------------------------------------------------------------------------------- | | apiKey string | Project API Key | | apihubUrl string | APIHUB Base URL. The default value for this parameter is 'https://apihub.document360.io' | | path string | File path of your respective API Definitions |

What's Next

We continually work to improve this CLI. Backward compatibility is maintained wherever possible so you can upgrade with confidence.