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

powerbot-cli

v2.0.2

Published

CLI tool for Powerbot CMS projects

Downloads

7

Readme

powerbot-cli

CLI tool for Powerbot CMS projects

oclif Version Downloads/week License

Usage

$ npm install -g powerbot-cli
$ powerbot COMMAND
running command...
$ powerbot (-v|--version|version)
powerbot-cli/2.0.1 darwin-x64 node-v10.15.1
$ powerbot --help [COMMAND]
USAGE
  $ powerbot COMMAND
...

Commands

powerbot dev [MODULE]

Starts commands set for project development.

USAGE
  $ powerbot dev [MODULE]

DESCRIPTION
  As module accepts `cms` or `chatbot`

See code: src/commands/dev.ts

powerbot env:list

Lists environments configured for current project directory.

USAGE
  $ powerbot env:list

See code: src/commands/env/list.ts

powerbot env:set [NAME]

Manages environments (database connection params) used for sync module.

USAGE
  $ powerbot env:set [NAME]

See code: src/commands/env/set.ts

powerbot env:unset [NAME]

Removes selected environment data from system.

USAGE
  $ powerbot env:unset [NAME]

See code: src/commands/env/unset.ts

powerbot help [COMMAND]

display help for powerbot

USAGE
  $ powerbot help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

powerbot info

Shows informations about CLI and Powerbot CMS versions.

USAGE
  $ powerbot info

See code: src/commands/info.ts

powerbot init [NAME] [VERSION]

Creates directory and initializes Powerbot CMS inside.

USAGE
  $ powerbot init [NAME] [VERSION]

DESCRIPTION
  As version you can use any release available on https://github.com/maxtomczyk/powerbot-cms/releases

ALIASES
  $ powerbot create

See code: src/commands/init.ts

powerbot language:add [NAME] [LOCALE]

Creates new language and messages variants for new locale.

USAGE
  $ powerbot language:add [NAME] [LOCALE]

DESCRIPTION
  As locale you have to provide valid Facebook locale like en_US

See code: src/commands/language/add.ts

powerbot language:change [NAMEORLOCALETOCHANGE] [NEWLANGNAME] [NEWLANGLOCALE]

Changes languege into another.

USAGE
  $ powerbot language:change [NAMEORLOCALETOCHANGE] [NEWLANGNAME] [NEWLANGLOCALE]

See code: src/commands/language/change.ts

powerbot language:default [LANGORLOCALE]

Sets passed language or locale as default.

USAGE
  $ powerbot language:default [LANGORLOCALE]

See code: src/commands/language/default.ts

powerbot language:remove [NAMEORLOCALE]

Removes language support from your chatbot.

USAGE
  $ powerbot language:remove [NAMEORLOCALE]

See code: src/commands/language/remove.ts

powerbot module [TYPE] [NAME]

Creates new component for CMS. Type paramter is view or component.

USAGE
  $ powerbot module [TYPE] [NAME]

See code: src/commands/module.ts

powerbot setup

Runs setup procedure like database import etc.

USAGE
  $ powerbot setup

See code: src/commands/setup.ts

powerbot sync:attachments [SOURCE] [TARGET]

Sync attachments table between two environments.

USAGE
  $ powerbot sync:attachments [SOURCE] [TARGET]

See code: src/commands/sync/attachments.ts

powerbot sync:elements [SOURCE] [TARGET]

Sync static elements between two environments.

USAGE
  $ powerbot sync:elements [SOURCE] [TARGET]

See code: src/commands/sync/elements.ts

powerbot sync:messages [SOURCE] [TARGET]

Sync messsages and related data between environments.

USAGE
  $ powerbot sync:messages [SOURCE] [TARGET]

See code: src/commands/sync/messages.ts