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

@msadoc/cli

v0.2.3

Published

The MSAdoc CLI allows you to upload Service Docs to a MSAdoc backend. See the [project homepage](https://github.com/riehlegroup/msadoc) to learn more about MSAdoc.

Downloads

91

Readme

MSAdoc CLI

The MSAdoc CLI allows you to upload Service Docs to a MSAdoc backend. See the project homepage to learn more about MSAdoc.

Installation

The MSAdoc CLI is primarily meant to be used in CI environments, such as GitHub Actions. However, you can also use it locally.

To install the CLI, run

npm install -g @msadoc/cli@latest

To update the package, simply rerun the installation command.

Usage

First, create a new API Key using the MSAdoc frontend. Then, make this API Key available as an environment variable called MSADOC_API_KEY.

To upload a Service Doc, run the following command:

msadoc upload ./example/sample-service.msadoc.json --server=https://example.com

Replace ./example/sample-service.msadoc.json with the path you the Service Doc you would like to upload, and replace https://example.com with the URL to your MSAdoc backend.

For testing purposes, you can also directly provide an API Key using the --api-key option:

msadoc upload ./example/sample-service.msadoc.json --server=https://example.com --api-key=<your-api-key>

Only use the --api-key argument for testing purposes since it might make the API Key available in the shell history and/or become accessible by other processes.

GitHub Actions

It is recommended to automate the upload of Service Docs using a CI environment. In the following, you can find a sample GitHub Actions configuration that automates the upload process.

Make sure to provide an API Key as a Repository Secret called MSADOC_API_KEY. On GitHub, you can set a Repository Secret under Settings --> Secrets and variables --> Actions.

name: Main Workflow

on: [push, pull_request, workflow_dispatch]

jobs:
  lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-node@v3
        with:
          node-version: 18

      - name: Install the MSAdoc CLI
        run: npm install -g msadoc-cli@latest

      - name: Upload the Service Doc
        run: msadoc upload ./example/sample-service.msadoc.json --server=https://example.com
        env:
          MSADOC_API_KEY: ${{ secrets.MSADOC_API_KEY }}

Development

In the following, you can find a few tips regarding the development of the CLI.

Please note that all of the following commands shall be executed from the root of the project, not from the CLI folder.

When developing, you probably want to be able to execute the CLI locally on your machine. First, you need to compile the CLI. To do so, run

npm run build -w=cli

Now, there are two ways to run the compiled program.

  1. Directly run the JS file
  2. Pack the CLI

Option 1

The first, and quickest, option is to directly run the generated JS file:

node ./cli/dist/cli.js

You can also pass arguments to it:

node ./cli/dist/cli.js upload ./example/load.service.msadoc.json

This is particularly useful if you want to quickly try out e.g. a new feature you are currently developing.

Option 2

After finishing a particular change, it is recommended to test how the actual CLI will work once the user installs it from npm. For this, we want to install the CLI locally in a similar way as you will install it from npm.

First, we pack the CLI:

npm pack -w=cli

This will generate a file like msadoc-cli-0.0.1.tgz in the root of the project (with 0.0.1 being the current version number of the CLI).

Now, uninstall any already existing package (just to be sure):

npm uninstall -g msadoc-cli

And finally, install our CLI:

npm install -g ./msadoc-cli-0.0.1.tgz

(Make sure to replace 0.0.1 with the current version number.)

Now, you can run the CLI as if it was installed directly from npm.

One interesting side effect of this procedure: When to unpack the Tar file, you can see which files are actually part of the package. This is particularly useful to check whether you maybe added unnecessary files to the package, or whether something is missing.