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 🙏

© 2025 – Pkg Stats / Ryan Hefner

create-evolved

v0.0.6

Published

<p align="center"> <img src="https://github.com/nagaozen/create-evolved/blob/master/logomark.v2.png?raw=true" alt="create-evolved hero image" width="512" /> </p>

Readme

JavaScript Style Guide Software Composition Analysis Static Application Security Test Commitizen Friendly Semantic Release

About

create-evolved is a versatile project scaffolding CLI built with Plop.js and Node.js to accelerate the bootstrap of modern applications, services, and libraries by generating opinionated, best-practice project structures automatically. It combines interactive prompts, customizable Handlebars templates, and a plugin-style architecture to support a wide range of project types.

Requirements

Before using create-evolved, ensure you have the following installed on your system:

  • git -- A free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
  • dotnet -- A cross-platform toolchain for developing, building, running, and publishing .NET applications; included with the .NET SDK.
  • pnpm -- A fast, disk space efficient package manager for JavaScript and Node.js projects, providing strict package management and workspace support.

Usage

  1. Generate a new project
pnpm create evolved@latest
  1. Follow the interactive prompts
    Answer questions about project name, author, license, and optional features

  2. Start coding
    Navigate to your directory and run the usual commands (pnpm i, dotnet restore) as directed by your chosen template.

Supported Templates

IMPORTANT: When creating templates, one MUST follow our golden rule: use the most compatible syntax/runtime for services and the latest syntax/LTS for drivers. -- nagaozen

  • .NET Console (net8.0)
    Opinionated .NET C# console app.

  • .NET Plug-in (net8.0)
    Opinionated .NET C# open-for-extension plug-in.

  • .NET Services (netstandard2.0)
    Opinionated .NET C# service using clean-code architecture and open-for-extension.

  • .NET WebAPI (net8.0)
    Opinionated .NET C# minimal web API.

Contributing

We welcome contributions! Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo, make changes and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

This GitHub repository adheres to the principles of GitHub Flow as outlined in the official GitHub documentation. We ensure that all changes are made through branch-based workflows, enabling collaborative development and efficient code review before integration into the main branch.

gitGraph
    commit id:"fix(api): export endpoint should be consistent with output clause"
    branch feature/amazing
    checkout feature/amazing
    commit id:"feat(amazing): implement mvp"
    checkout main
    merge feature/amazing
    branch hotfix/cicd
    checkout hotfix/cicd
    commit id:"fix(cicd): automatic deployment"
    checkout main
    merge hotfix/cicd
    branch feature/incredible
    checkout feature/incredible
    commit id:"feat(incredible): implement mvp"
    checkout main
    merge feature/incredible
  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/amazing)
  3. Commit your Changes (cz)
  4. Push to the Branch (git push origin feature/amazing)
  5. Open a Pull Request