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

generator-web-starter

v2.8.0

Published

A generator for Yeoman

Readme

generator-web-starter

The Web Starter Kit is a Yeoman generator developed and maintained by Forum One. It allows you to:

  1. Create a container-based project using Docker Compose or a React SPA using Webpack.
  2. Automatically install Drupal, WordPress, and Gesso.
  3. Add deployment utilities like Capistrano.

Installing

As of generator-web-starter 2.0, we no longer recommend installing the generator directly. Instead, install forumone-cli, which ensures that the generator is always up to date.

Using generator-web-starter

The command f1 new can be used to generate a new project in a freshly-created directory, and f1 init can be used to create a project in an existing directory.

After installing, navigate to the directory that will contain the new project and run:

f1 init

One-off runs with npx

This command will temporarily install yo - the Yeoman CLI - and generator-web-starter to start a project. It can be used in situations where installation of forumone-cli is not desired:

npx --ignore-existing -p yo -p generator-web-starter yo web-starter

Enhancing this project / Setup instructions

  • Clone repository
  • npm ci - install dependencies
  • Perform changes
  • npm pack - Create a tarball for testing purposes
  • npx -p <path to generator.tgz> -p yo -- yo web-starter - Execute web starter with the modifications you just made
  • Review input / output after making selections that you're testing for and ensure changes are captured

Debugging

To support easier debugging, verbose logging may be enabled during execution using the logging mechanism built into Yeoman by default. Logging for any specified generator may be done by setting various values into the DEBUG environment variable before execution.

For all logging:

export DEBUG=\*

For more targeted debugging within a given generator or sub-generator other values may be set including:

  • Everything: DEBUG=\*
  • Yeoman generator flow: DEBUG='yeoman:generator'
  • Main app generator: DEBUG='web-starter:app'
  • All Web Starter sub-generators: DEBUG='web-starter:*'