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

@novaedgedigitallabs/skeltr

v1.0.1

Published

Interactive CLI to scaffold full-stack project structures — backend, frontend, and admin panel with production-ready boilerplate

Downloads

17

Readme

skeltr

npm version npm downloads license node

Interactive CLI scaffolding tool for full-stack projects — backend, frontend, and admin panel with production-ready boilerplate.

By NovaEdge Digital Labs


Quick Start

# One-time use
npx @novaedgedigitallabs/skeltr

# Or install globally
npm install -g @novaedgedigitallabs/skeltr
skeltr

Answer a few prompts and get a complete, production-ready project structure in seconds.


Install Globally

npm install -g @novaedgedigitallabs/skeltr
skeltr

Why skeltr?

Starting a new project means creating the same folder structure every time. skeltr skips that — pick your stack, answer 6 questions, start coding.

  • 6 production-ready templates across backend, frontend, and admin
  • Every part includes .env, package.json, and boilerplate entry files
  • 17 tests passing — template validation + disk generation verified

What You Get

skeltr generates a complete folder structure with boilerplate files — no config needed after generation.

Backend Templates

| Template | Stack | |----------|-------| | express-mongodb | Express + Mongoose | | express-postgresql | Express + Prisma | | nestjs | NestJS + MongoDB |

Frontend Templates

| Template | Stack | |----------|-------| | nextjs | Next.js 15 (App Router) | | react-vite | React 18 + Vite |

Admin Templates

| Template | Stack | |----------|-------| | nextjs-admin | Next.js 15 Admin Panel |


How It Works

npx @novaedgedigitallabs/skeltr

→ Project name?         my-app
→ Output directory?     ./my-app
→ Which parts?          ☑ Backend  ☑ Frontend  ☐ Admin
→ Backend stack?        Express + MongoDB
→ Frontend stack?       Next.js 15
→ Generate README?      Yes
→ Confirm               ✔ Generate

✔ Done!

  Project created at ./my-app

  Next steps:
    cd my-app/backend && npm install && cp .env.example .env && npm run dev
    cd my-app/frontend && npm install && npm run dev

Generated Files

Every part includes:

  • package.json — correct dependencies pre-filled
  • .env — local development values
  • .env.example — safe to commit
  • .gitignore — configured for the stack

Plus stack-specific entry files (server.js, app.js, layout.tsx, page.tsx, etc.)


Development

# Clone and install
git clone https://github.com/novaedgedigitallabs/skeltr.git
cd skeltr
npm install

# Run locally
node bin/skeltr.js

# Run tests
npm test

Publishing

npm version patch    # 1.0.0 → 1.0.1
git push --tags      # CI auto-publishes to npm

Support

If skeltr saved you time → novaedgedigitallabs.tech/pay


License

MIT © NovaEdge Digital Labs