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

@aragon/osx-cli

v1.4.1

Published

Create, Deploy and Manage Aragon OSx plugins with ease

Downloads

84

Readme

Aragon

Aragon OSx CLI

Aragon OSx CLI is a command line tool supporting your plugin development process. It helps developers build, deploy, and publish plugins faster and easier.

Quick Start

You can install the Aragon OSx CLI globally via npm:

npm install -g @aragon/osx-cli

Then, you will be able to run commands using this format:

aragon [command] [options]

Alternatively - you can use the CLI without installing it locally in your device, by using npx:

npx @aragon/osx-cli [command] [options]

Commands

The Aragon OSx CLI contains several commands to help you develop plugins. All arguments are optional, each command will prompt for any arguments that were omitted in the command line.

deploy

The deploy command deploys your Plugin Setup contract to whichever chain you determine.

Usage

aragon deploy [contract-name] [options]

Options

| Option | Description | Example | | -------------- | --------------------------------------------------------------- | --------------------------------- | | -b, --build | Full path to project build | /Users/main/plugin-repo/artifacts | | -n, --network | Network to deploy to. Choices: mainnet, polygon, goerli, mumbai | mainnet | | -s, --simulate | Simulate deployment | |

publish

The publish command publishes your plugin to the Aragon OSx protocol. Under the hood, this is creating a PluginRepo instance for your plugin with its first version. If you'd like to learn more about what publishing a plugin into Aragon OSx means, check out our guide here.

Usage

aragon publish [contract-address] [options]

Options

| Option | Description | Example | | ---------------- | ---------------------------------------------------------------- | --------------------- | | -n, --network | Network to publish to. Choices: mainnet, polygon, goerli, mumbai | mainnet | | -s, --subdomain | Subdomain for plugin | my-plugin | | -b, --build | Path to build metadata | /path/to/build.json | | -r, --release | Path to release metadata | /path/to/release.json | | -m, --maintainer | Maintainer address | 0x... | | --simulate | Simulate publishing | |

settings set-pk

Store a new private key for signing transactions.

aragon settings set-pk [private-key]

settings set-tenderly

Store a new Tenderly project and API key configuration. Checkout this link if your not sure how to find your settings

settings set-tenderly

settings view

View current public key, private key hash, and Tenderly configuration.

aragon settings view

info

The info command provides information about a Plugin's PluginRepo instance. This information can be used to determine the properties and status of a plugin within its repo.

Usage

aragon info [repoName] [options]

Options

| Option | Description | Example | | ------------- | ----------------------------------------------------------------------------------- | ------- | | -n, --network | Network where the Plugin is published in. Choices: mainnet, polygon, goerli, mumbai | mainnet |

In this example, info command will fetch the information about the my-plugin repository from the mainnet network.

Developing the CLI

This project is intended to be used with the latest Active LTS release of Node.js.

To clone the repository, use the following commands:

git clone https://github.com/aragon/cli
cd cli
yarn install

In one terminal, run the build in watch mode through using the following command:

yarn build:watch

In another terminal, run the CLI using the following command:

yarn dev

Available Scripts

  • dev - build & run the cli
  • clean - remove coverage data, vitest cache and transpiled files
  • prebuild - lint source files and tests before building
  • build - transpile TypeScript to ES6
  • build:watch - interactive watch mode to automatically transpile source files
  • lint - lint source files and tests
  • prettier - reformat files
  • test - run tests
  • test:watch - interactive watch mode to automatically re-run tests

Security

If you believe you've found a security issue, we encourage you to notify us. We welcome working with you to resolve the issue promptly.

Security Contact Email: [email protected]

Please do not use the issue tracker for security issues.