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

@staffbase/create-widget

v2.3.5

Published

initializer for staffbase widgets

Downloads

99

Readme

Staffbase Logo

Staffbase Create-Widget

Description

The "Create Widget" repository is an utility to kick start the development of a custom element, used in the employee application. It generates the file and folder structure, a first small example widget and the toolbelt to run the development cycle and build the final script.

The widgets are based on the web component standard and leverage the lifecycle methods of it. Read more about web components in the documentation.

File structure

The root folder contains the configuration files and package manager description. For Webpack the config differentiate between development and production environments for more clarity.

.
├── README.md
├── favicon.png
├── index.html
├── package.json
├── src
│   ├── bootstrap.ts
│   ├── config.tsx
│   ├── configuration-schema.ts
│   ├── dummy-widget.tsx
│   └── index.tsx
├── tsconfig.json
├── webpack.common.js
├── webpack.dev.js
└── webpack.prod.js

Source files

bootstrap.ts

A mocked implementation of the registration methods used in the real application. It is needed to preview the widget in development.

config.tsx

The configuration form which is rendered from the configuration schema in the widget. It is also used in the preview to alter the component.

configuration-schema.ts

A simple schema to define custom settings for the widget. For more information, please refer to the documentation of RJFS.

widget.tsx

The naming of this file should reflect the chosen widget name. This file contains the logic of the widget. It is rendered within the render method of the index.tsx file.

index.tsx

Bootstrap the widget here to be used inside the target platform. Also the block definition is set here.

Usage:

npx @staffbase/create-widget

Read more about custom-element naming conventions here.

cli-options:

--packageManager=[npm|yarn]

Running Locally

To run the generator from a local copy of the source code, first install dependencies:

npm install

then build the generator:

npm run build

and finally, start the generator using:

node bin/index.js

The generated widget code will reside in the current directory.

Known Issues:

  • The development preview of the widget and the preview of the configuration are not connected. Submitting the form doesn't update the widget on the left hand side.
  • not compatible with npm 7