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

bodhi-cli

v0.9.25

Published

Command Line Tools for the HotSchedules Bodhi PaaS

Downloads

47

Readme

rbc-cli-tools

Command Line Tools for the RBC Cloud

##Installation

The cli tools require a nodejs runtime and are installed using the node package manager (npm).

> npm install -g rbc-cli

Not that on *nix based systems and Macs, a global install command MUST be run using sudo.

One the tools are installed, verify the installation using the version command. The command SHOULD respond with a semantic version of the tools: M is the major version, m is the minor version, and b is the build increment.

> rbc-cli -V
  M.m.b 

##General Str

###Common Usage

<rbc-tool> [options] <command> [arguments ..] 

The first entry is the name of the tool. The second argument is the command. All further arguments are interpretted in the context of the command.

Options can be specified anywhere on the command line AFTER the tool designation. The following commands are considered equivalent.

rbc-cli -e my-environment -v command
rbc-cli -v command -e my-environment
rbc-cli command -v -e my-environment

###Processing Options

The following switch are universal and have consistent semantics across the tools.

long | short | meaning ---- | ----- | ------- version | V | request the version of a tool help | H | request help in the form of usage instructions verbose | v | execute the command with intermediate output debug | d | execute the command in debug mode force | f | force the command to ignore saftey considerations no-color| C | do not use color

##Project Commands

  • pwd
  • init

###pwd

Aliases: home

This command will print the home directory of the current project.

#####Arguments

None.

#####Return

Platform specific directory path of the current project.

#####Sample

> rbc-cli pwd
/path/to/project/root

###init

This command will establish the current directory as a new project by creating a new rbc-project.json file. This command will fail safely if an existing rbc-project.json file exists up the directory tree. A user may create a project in a subfolder by using the --force command line option.

> rbc-cli init [-f]
/path/to/new/project/root

#####Arguments

None.

#####Return

Platform specific directory path to the newly initialized project.

app-tools

Documentation on app-tools is located here.