A CLI to create / scaffold blessed apps
npm install @blessed/cli!Build and Deploy


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
```
npm install -g @blessed/cli
To open a wizard UI
``
blessed
blessed new
`Example:
`
blessed new my-awesome-cli
`$3
`
cd my-awesome-cli
blessed page
`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
`$3
`
blessed widget
`
By default, this will create a Box widget.
You can also pass the --type option to specify the type of the widget.`
blessed widget --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 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
``