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 🙏

© 2026 – Pkg Stats / Ryan Hefner

bb-customize3

v1.0.7

Published

Generate a new Extended Widget

Readme

NAME

bb-customize3 - Generate a new Extended Widget

SYNOPSIS

bb-customize3 [--help] [-v|--version]
bb-customize3 <source-widget>
bb-customize3 <source-widget> --title target-widget --module target-module
bb-customize3 <source-widget> --title target-widget --module target-module --enable-slots
bb-customize3 --list

USAGE

Usage: bb-customize3 [options] <file ...>

Options:
  -V, --version                            output the version number
  -t, --title <name>                       Widget Title (eg. Custom Product Summary)
  -m, --module <module>                    Module Name (eg. product-summary-extended)
  -s, --enable-slots                       Enable Extension Slots (commented by default)
  -d, --dist-path <path/to/compiled/libs>  Path to source widgets (default: "./node_modules/@backbase")
  -p, --widget-name-pattern <sub-string>   Filter out items (default: "-widget-ang")
  -l, --list                               List all available widgets
  -h, --help                               output usage information

DESCRIPTION

Running this command wil generate a new Extended Widget that will copy from the specified Widget the following:

  • Preferences
  • Input/Outputs
  • Extension slot HTML

Important: A lot of Widgets leverage a 'Common' library, make sure to include that library as a Angular Module dependency manually, eg: TransactionsCommonModule ProductSummaryCommon

The tool will ask you first:

  1. Which Widget you would like to Extend (select from list)
  2. The name of the New Component (eg. Extended Product Summary Widget)
  3. The name of the New Widget (eg. product-summary-widget-extended)

EXAMPLES

List all available widgets

Lists all widget from default node_modules directory:

  $ bb-customize3 --list

Enable Extension slots

All extension slots templates will be uncommented. This flag could be usefull for testing if OOB Extension slots are working.

  $ bb-customize3 --enable-slots

List widgets in the dist/libs directory

All extension slots templates will be uncommented. This flag could be usefull for testing if OOB Extension slots are working.

  $ npm run package:libs
  $ bb-customize3 --list --dist-path dist/libs --widget-name-pattern -widget

DISCLAIMER

This is a community supported tool, and is not affiliated or maintained by any commercial company. Usage is at your own risk!