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

skeletapp

v1.0.1

Published

Package to create a new project from a template

Downloads

7

Readme

Skeletapp

A simple CLI tool to create a new project from a template.

Features

  • Create a new project from a LOCAL template.
  • Create a new project in the current folder.
  • Create a new project in a folder of your choice.
  • Fix the versions of the dependencies in the package.json file of your templates.
  • Create a new project from a REMOTE template.

Simple Usage without installing

  1. You can use the command npx skeletapp <repository-url> in your terminal and:
    1. Skeletapp will check that the repository you are trying to use is a valid GitHub repository. You can use either a full Github URL or a combination of the owner and the repository name. Example: https://github.com/Ivluengo/skeletapp or Ivluengo/skeletapp.
    2. Skeletapp will clone the repository, will show you the list of templates available in the repository and will ask you to choose one.
    3. Skeletapp will create the project in the folder you chose.

Usage installing Skeletapp locally

  1. Install Skeletapp locally by running the command npm install -g skeletapp in your terminal.
  2. Skeletapp will create a global directory called .skeletapp in your home directory with a templates folder inside.
  3. Inside the templates folder, add your own template folders.
    1. When you will launch the tool, you will be asked to choose a template.
  4. Inside the template folder, add your own files.
  5. If you want Skeletapp to fix your package.json file, so whenever you create a new project from this template, the versions of the dependencies will be the latest ones, you need to add an asterisk (*) to the version of the dependencies you want to be updated.
  6. Recommended to delete the package-lock.json file so it won't collide with the versions Skeletapp will fix.
{
  "dependencies": {
    "react": "*",
    "react-dom": "*"
  }
}

Extras

  • You can also use the command skeletapp add <template-path> in your terminal to add a template from any folder to the global directory.
  • You can also use the command skeletapp add repo <repository-url> in your terminal all the templates from a remote repository to the global directory.
    • The url can be a full Github URL or a combination of the owner and the repository name. Example: https://github.com/Ivluengo/skeletapp or Ivluengo/skeletapp.

License

MIT

Author

Ivan Luengo

Thanks to Leonardo for the first idea and the first version a similar tool called template-cli.