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

@blessed/cli

v1.2.2

Published

A CLI to create / scaffold blessed apps

Downloads

28

Readme

blessed-cli

Build and Deploy semantic-release npm version

A CLI to create / scaffold blessed apps with conventional folder structure and project setup.

Features:

  • Project scaffolding
  • Theming setup implemeted by default
  • Generate commands for pages and widgets
  • Conventional project structure with linting enabled

Install

npm install -g @blessed/cli

Usage

To open a wizard UI

blessed

Create a new blessed CLI project

blessed new <project-name>

Example:

blessed new my-awesome-cli

Create a new page in the CLI

cd my-awesome-cli
blessed page <page-name>

For example, if you want to create a page named home

blessed page home

You can also use the alias p for creating pages

blessed p home

Create a new blessed widget inside the project

blessed widget <widget-name>

By default, this will create a Box widget. You can also pass the --type option to specify the type of the widget.

blessed widget <widget-name> --type list

You can also use the alias w to create a widget

blessed w hello-world --type list

List of widgets available

  • bigtext
  • box
  • list
  • listbar
  • listtable
  • loading
  • log
  • message
  • prompt
  • question
  • table
  • text

Help

blessed <command> <params> <options>

Commands:
  blessed new [project-name]    Create a new blessed project
  blessed page [page-name]      Create a new page component         [aliases: p]
  blessed widget [widget-name]  Create a new blessed widget         [aliases: w]

Options:
      --version  Show version number                                   [boolean]
      --help     Show help                                             [boolean]
  -d, --dry-run  Dry Run: Verify the command without executing         [boolean]

For more information, see https://github.com/terminal-junkies/blessed-cli

Projects created with blessed-cli

  • ember-cli-next
  • ember-app-explorer
  • ember-observer-cli
  • nvm-tui
  • npmx