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

@progressively/cli

v1.0.0-alpha.5

Published

CLI to manage Progressively feature flags

Downloads

8

Readme

@progressively/cli

Progressively is a simple, lightweight and OpenSource feature flag software.

This repository contains the CLI

  • [x] Administrator account creation
  • [x] Authentication
  • [x] Project creation/deletion
  • [x] Flag manipulation
  • [x] Types generation

Quickstart

npm i -g @progressively/cli
progressively duck

Demo

demo-video

Summary

Usage

$ npm install -g @progressively/cli
$ progressively COMMAND
running command...
$ progressively (--version)
@progressively/cli/1.0.0-alpha.4 darwin-arm64 node-v18.17.1
$ progressively --help [COMMAND]
USAGE
  $ progressively COMMAND
...

Commands

progressively config

Configure the Progressively CLI

USAGE
  $ progressively config [--show]

FLAGS
  --show  Display the current configuration for the user

DESCRIPTION
  Configure the Progressively CLI

EXAMPLES
  $ progressively config

See code: src/commands/config.ts

progressively duck

Try it, you won't regret it

USAGE
  $ progressively duck

DESCRIPTION
  Try it, you won't regret it

EXAMPLES
  $ progressively duck

See code: src/commands/duck.ts

progressively flag

Manipulate flags

USAGE
  $ progressively flag [-C] [--create-only]

FLAGS
  -C, --create   Create a flag and update existing
  --create-only  Only create a flag

DESCRIPTION
  Manipulate flags

EXAMPLES
  $ progressively flag

See code: src/commands/flag.ts

progressively help [COMMANDS]

Display help for progressively.

USAGE
  $ progressively help [COMMANDS] [-n]

ARGUMENTS
  COMMANDS  Command to show help for.

FLAGS
  -n, --nested-commands  Include all nested commands in the output.

DESCRIPTION
  Display help for progressively.

See code: @oclif/plugin-help

progressively login

Authenticate to store tokens in config

USAGE
  $ progressively login

DESCRIPTION
  Authenticate to store tokens in config

EXAMPLES
  $ progressively login

See code: src/commands/login.ts

progressively me

Provide fullname and email of the current user

USAGE
  $ progressively me

DESCRIPTION
  Provide fullname and email of the current user

EXAMPLES
  $ progressively me

See code: src/commands/me.ts

progressively project

Manage project (select current, create or delete one)

USAGE
  $ progressively project [-C] [-D]

FLAGS
  -C, --create  Create a project before selection
  -D, --delete  Delete a project

DESCRIPTION
  Manage project (select current, create or delete one)

EXAMPLES
  $ progressively project

See code: src/commands/project.ts

progressively register

Register an admin user

USAGE
  $ progressively register

DESCRIPTION
  Register an admin user

EXAMPLES
  $ progressively register

See code: src/commands/register.ts

progressively types

Generate types based on your Progressively instance

USAGE
  $ progressively types

DESCRIPTION
  Generate types based on your Progressively instance

EXAMPLES
  $ progressively types

See code: src/commands/types.ts