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

tidil

v1.0.11

Published

node /Users/edwardtidbury/Documents/Misc_Projects/tidil.git/index.js check-server --port-env TEST_SERVER_PORT

Readme

node /Users/edwardtidbury/Documents/Misc_Projects/tidil.git/index.js check-server --port-env TEST_SERVER_PORT

todo

ensure all commands resolve with process.exit

allow 'tidil open' to pass in an option --port-env DEV_SERVER_PORT to override default environment variable used

add rm-locks command add rm-pkg - removes client/server lock files and node_modules add rm-pkg-locks/rm-locks-pkg - removes client/server lock files and node_modules

add a check-init command to be added in preinstall npm script

add command for grabbing file from github repo e.g. curl https://codeload.github.com/zeit/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/with-jest curl -L https://github.com/etidbury/tpl-next-sails | tar zx /blob/master/README.md

init --tpl next-sails (on preinstall of project etc.) Ensure variables setup, delete previous builds and pkgs, etc.

docker:reset docker stop $(docker ps -a -q) && docker rm $(docker ps -a -q)

docker:rm docker rm $(docker stop $(docker ps -a -q --filter ancestor=cra-sails --format="{{.ID}}"))

docker:build docker build -t cra-sails . --no-cache

docker:rmi docker rmi cra-sails

docker:stop docker rm $(docker stop $(docker ps -a -q --filter ancestor=cra-sails --format="{{.ID}}"))

docker:run docker run -p 127.0.0.1:3021:3005 -t cra-sails

docker:start npm run docker:rmi ; npm run docker:stop ; docker build -t cra-sails . && npm run docker:run

docker:mysql docker stop local-mysql-server ; docker rm local-mysql-server ; docker run --name local-mysql-server -p 3306:3306 -e MYSQL_ALLOW_EMPTY_PASSWORD=true -e MYSQL_DATABASE=cra-sails-local -e MYSQL_ROOT_HOST=% -d mysql/mysql-server:5.7 --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci