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

generate-web-project

v1.0.38

Published

Generate 'ready-to-code' web projects

Downloads

48

Readme

npm version

Generate Web Project

This script aims to solve problems associated with two "traditional" ways of starting a web (Angular, React, Next.js) project:

  1. Manually type commands and modify files
    • A document must be created that includes every step necessary to create a new project (i.e. "ng new" to tweaking config files)
    • A developer has to accurately follow numerous steps within the document
  2. Create a boilerplate project (e.g. in repo)
    • The project must be maintained and updated every time new versions of the dependencies are released
    • The next major version of a particular framework (e.g. Angular) may require a complete rewrite

The script automates the process, allowing a developer to simply run the script, and commit the generated files; other developers can pull the generated files and start coding immediately. The generated project is guaranteed to have the latest of everything.

What the script does

  • The script generates a new project, installs additional packages, creates files required by these packages, and tweaks files generated by the CLI.
  • By default, the script generates a minimal web project with items that every new web project should contain for a selected framework, including, but not limited to, "prettier", "husky" & "lint-statged" (to allow "prettier" to run pre-commit), etc.
  • The script also offers the option to install a state management framework, and Storybook, as well as any other required and/or dev dependencies.

Running the script

npx generate-web-project

The script will prompt you to provide some project related information that it needs to complete the setup process. See the "Command line options" section below for more information.

Command line options

npx generate-web-project --help

Usage: generate-web-project [options]

| Flags | Description | | ------------------------------------------ | ------------------------------------------------------------------------ | | -f, --framework <framework> | Specify framework [ angular | react | next ] | | -a, --ng-version <version> | Angular CLI version | | -n, --name <name> | Project name | | -u, --ng-universal | Install Angular Universal | | -m, --material | Install Angular Material or Material-UI (depends on specified framework) | | -s, --state-management <stateManagement> | Install specified state management | | -b, --storybook | Install Storybook | | -d, --dependencies <dependencies> | Install additional dependencies | | -D, --dev-dependencies <devDependencies> | Install additional DEV dependencies | | -h, --help | output usage information |