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

@bpanel/bpanel-cli

v1.0.2

Published

CLI tool for building bpanel plugins

Downloads

34

Readme

bPanel CLI

A simple CLI utility for use with bpanel

Installation

npm install -g @bpanel/bpanel-cli

Usage

Passing no arguments, or --help, will return the help menu.

$bpanel-cli --help

Currently supports:

  • create / c: create a plugin boilerplate project for local development
  • list / l: list all currently installed plugins
  • install / i: install a new plugin to your local bPanel
  • uninstall / u: uninstall a plugin from your local bPanel
  • search / s: search available plugins you can install with bpanel-cli i

Create a Plugin Boilerplate

The create command will walk you through the steps to create a plugin boilerplate.

In your terminal:

bpanel-cli create

Then just answer the questions. The initial questions will setup your bPanel metadata, as well as necessary information to initialize your project as an npm module. This means that when you're happy with your plugin and want to share it with the world, all you have to do is run npm publish from your project directory.

Most of the questions are self-explanatory, but if this is your first time creating a bPanel plugin some additional information might be helpful.

Names

The first question is about primary name of your plugin. This will set the name of your directory and the name of your plugin on npm. Because npm uses package names in the registry's url, only url friendly names can be used. We use validate-npm-package-name to validate names, so you can see their readme for specific rules. If there's anything wrong, you will be asked to pick a new name. This does not check for the existence of an npm package with the same name, so double check this on your own first.

You can learn more about plugin names [here](http://bcoin.io/bpanel-docs/docs/api-metadata.html#details.

Dependency Check

The question "Will your plugin depend on any other published bPanel plugins" has to do with whether you will be bundling or requiring any other bPanel compliant plugins (i.e. they must follow the API rules). You can read more about plugin bundling here.

To see what plugins are available to be bundled run the following in another terminal:

$ bpanel-cli search

This will search the npm registry for any plugins tagged with the bpanel keyword (all plugins created with bpanel-cli will automatically add this keyword).

Making a Theme

You can read more about making a theme in bPanel here. If you answer "y" to this, bpanel-cli will mock out the necessary files and exports to create a theme.

Additional Modules

By default, bpanel-cli will only expose the metadata export from the entry point of your app. If you have a good idea of what you want to start building, you can choose "y" to the question of "Would you like to add any additional module templates". This will mock out in your lib/index.js what these modules should look like.

Scroll through the options with your arrow keys (or vim navigation), select with the space bar, and press enter when you're done.

If any of the modules selected need to specify a component they will decorate (e.g. Footer, Header, Sidebar, or Panel), you will be asked to select which in the next step. You can add more later.

To learn more about building plugins and about the module API, check out the bPanel documentation website.

License

  • Copyright (c) 2018, Bcoin Devs (MIT License).

See LICENSE for more info.