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

@bresleveloper/starter

v1.0.6

Published

clones any git repo and renames all occurrences to new project name

Readme

Bresleveloper AI Starter

see at npm https://www.npmjs.com/package/@bresleveloper/starter

Commands

bresleveloper new

bresleveloper new <projectName> - dups https://github.com/bresleveloper/Starter-.NET-4.8-NG-18 and changes all files and dirs to new projectName

bresleveloper dup

bresleveloper dup <projectName> <repoUrl> - dups any repository (git clone <repoUrl>) and renames all occurrences of the repoURL param to new projectName param

this is a generic use of the bresleveloper new

bresleveloper drill

bresleveloper drill <modelName> [optional] -p

  1. Must run inside NG project folder
  2. Must have \models\<my-class>.model.ts file
  3. Run as bresleveloper drill <my-class>, without .model.ts
  4. -p for print in terminal only, not creating files, useful in you have not created project template with my template

added working drill with local dir

-l will search file at local working dir like this bresleveloper drill -p -l myThing will search at CWD for myThing.model.ts

will create the following:

  1. matching .cs in \Models\<className>.cs
  2. matching web-api-controller in \Controllers\<className>Controller.cs as SimpleController<className>
  3. matching .sql in \Models\scripts\<className>.sql for CREATE TABLE script
  4. make the proj props of the .Net to make default page http://localhost:4200

debug

  • To make this tool globally available (on your machine for testing), you can link it (just run->) npm link
  • when you are done run npm unlink bresleveloper-starter

other commands

  • If you want to make cli.js executable directly -> #!/usr/bin/env node
  • ng g class models/big-item --type=model --skip-tests

upload

  1. git push all (must have clean repo)
  2. npm version patch (will auto up version)
  3. npm publish --access public

after git push

                 # examples how each command pushes a version

npm version patch # 1.0.2 -> 1.0.3 npm version minor # 1.0.0 -> 1.1.0 npm version major # 1.0.0 -> 2.0.0

npm publish --access public

troubleshooting

npm error need auth This command requires you to be logged in to https://registry.npmjs.org/
npm error need auth You need to authorize this machine using `npm adduser`

run npm login