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

@hideoo/create-app

v3.0.0

Published

CLI utility to bootstrap a new project by creating a new app from scratch or update an existing app.

Downloads

28

Readme

Bootstrapping a new project always consists of the exact same steps like setting up TypeScript, installing dependencies, configuring a linter, adding various miscellaneous files and so on.

@hideoo/create-app is a very opinionated CLI utility to help me quickly bootstrap a new project by either:

  • creating a new project from scratch
  • updating a new project generated with pnpm create vite or pnpm create next-app

Note: pnpm and the GitHub CLI are required to use this utility.

Usage

$ pnpm create @hideoo/app

And that's it, no options, no configuration and no extra tweaks needed, you are ready to go!

Features

Either create a new app from scratch (in the current directory or a new directory) or update an existing app.

Tools

Package.json

  • Pre-fill most common fields
  • Add a lint script to lint, ensure formatting and typecheck the code
  • Enforce the package manager to the latest version of pnpm (reused in GitHub Actions)
  • Enforce a minimum Node.js version (reused in GitHub Actions)
  • Optionally add the configuration for publishing to npm
  • Sort all well-known fields based on custom rules

Dependencies

  • Automatically install all dependencies using pnpm
  • Pin all new and existing dependencies to the exact latest version (versions are fetched from jsDelivr)

Miscellaneous

  • Automatically run Prettier and ESLint with the --fix option on all files (this is particularly useful when updating an existing project to ensure all files match the proper code style)
  • Add various various pre-filled files like .gitignore, README.md and LICENSE

Git

  • Initialize a new Git repository if needed
  • Setup a pre-commit hook to run Prettier on all staged files and ESLint on supported staged files
  • If a repository matching the name of the app exists on GitHub, enable the GitHub repository setting to automatically delete head branches after pull requests are merged
  • Stage added or updated files during the creation of the app at the end of the process

GitHub Actions

  • Create an integration workflow to lint, ensure formatting, typecheck and test the project for every push on the main branch or pull request
  • Add a customizable release workflow that can be triggered by bumping the version number in a commit with a tag matching the new version number (or just running pnpx bumpp)
    • The release workflow will fail if the integration workflow fails
    • A new release containing the changelog will be published on GitHub based on conventional commits
    • Optionally, if the app is a public npm package, a webpage to create a new npm automation access token will be opened during the installation in order to automatically add the new token as a secret to the repository matching the name of the app on GitHub if it exists. The release workflow will also be modified to publish the package with provenance to the npm registry.

License

Licensed under the MIT License, Copyright © HiDeoo.

See LICENSE for more information.