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

@wmfs/tymly-cli-rest-client

v1.18.0

Published

CLI tool to launch Tymly State Machines over REST

Downloads

5

Readme

tymly-cli

npm (scoped) CircleCI codecov CodeFactor Dependabot badge Commitizen friendly JavaScript Style Guide license FOSSA Status

CLI tool to launch Tymly State Machines over REST

Install

$ npm install tymly-cli --save

Usage

$ npm run cli --command configKey

--command

Key of the configuration you want to run, it must match with a config command. e.g. search, refreshRanking

Each config will have it's own set of input values and must be added as extra flags. For example, if you wish to launch the search state machine you can pass in a query, a limit and an offset so the command will look like the following:

$ npm run cli --command=search --query=kebab --limit=12 --offset=0

To find the input flags, you can look in the run-configurations directory and find the state machine you wish to run.

quiet | q

Including 'quiet' in the command will make it run in 'quiet mode' and does not put anything onto the console

$ npm run cli quiet --command=incidentsInProgress
$ npm run cli q --command=incidentsInProgress

Run Configurations

  1. Incidents In Progress
  2. Search
  3. Refresh Ranking
  4. Refresh All

Incidents In Progress

$ npm run cli --command=incidentsInProgress

Search

Inputs:

  • query (required)
  • limit (required)
  • offset (required)
  • domain
  • orderBy
  • showActiveEventsOnly
  • lat
  • long
  • categoryRestriction
$ npm run cli --command=search --query=kebabs --limit=10 --offset=0 

When a value to any of the inputs contains multiple words then separate them with underscores. See query:

$ npm run cli --command=search --query=99_vauxhall_road --limit=10 --offset=0 

When a value to any of the inputs is an array then separate them with commas. See categoryRestriction:

$ npm run cli --command=search --query=kebabs --limit=10 --offset=0 --categoryRestriction=gazetteer,fireSafety

Refresh Ranking

Inputs:

  • schema (required)
  • category (required)
$ npm run cli --command=refreshRanking --schema=wmfs --category=factory 

Refresh All

$ npm run cli --command=refreshAll

Build environment variables

| Environment Variable | Notes | Example | | -------------------- | ----- | ------- | | TYMLY_API_URL | The base URL of Tymly (Required) | http://localhost:3210 | | TYMLY_NIC_AUTH0_CLIENT_ID | The client ID (as supplied by Auth0) (Required) | abc... | | TYMLY_NIC_AUTH0_CLIENT_SECRET | The client secret (as supplied by Auth0) (Required) | abc... | | TYMLY_NIC_AUTH0_DOMAIN | The client domain (as supplied by Auth0) (Required) | abc.de.auth0.com | | TYMLY_AUTH_AUDIENCE | The Tymly audience (Required) | abc... | | DEBUG | To enable debug statements (Optional) | tymly-cli | | WEB_API_TIMEOUT_IN_MS | Specify a timeout. Default to 3000. (Optional) | 5000 |

Once the environment variables have been set, you can run the tests like this:

$ npm test

License

MIT

FOSSA Status