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

create-kit-dev

v1.0.17

Published

CLI para criar um projeto Node.js moderno com TypeScript, esbuild e estrutura inicial configurada.

Readme

🚀 CLI - Criador de Projetos Node.js + TypeScript / Node.js + TypeScript Project Creator

| 🇧🇷 Português | 🇬🇧 English | |--------------|------------| | Uma ferramenta de linha de comando (CLI) que automatiza a criação de projetos Node.js com suporte completo a TypeScript, build com Esbuild, execução com TSX, e muito mais. | A command-line tool (CLI) that automates the creation of Node.js projects with full support for TypeScript, Esbuild bundling, execution with TSX, and more. |

✅ Funcionalidades / Features

| 🇧🇷 Português | 🇬🇧 English | |--------------|------------| | 📁 Criação de estrutura de projeto - Solicita o nome do projeto via prompt interativo. - Valida o nome com Regex, impedindo nomes inválidos ou reservados (con, nul, lpt1). - Cria a pasta do projeto e muda o diretório (cd) automaticamente. | 📁 Project Structure Creation - Prompts for the project name via an interactive CLI. - Validates the name with Regex, preventing invalid or reserved names (con, nul, lpt1). - Creates the project folder and automatically changes directory (cd) into it. | | 📝 Geração automática de arquivos - src/main.ts com um exemplo básico (console.log('Hello World!')) - package.json completo com scripts úteis - .gitignore com regras padrão - esbuild.config.js pronto para bundling | 📝 Automatic File Generation - src/main.ts with a basic example (console.log('Hello World!')) - Complete package.json with useful scripts - .gitignore with standard rules - esbuild.config.js ready for bundling | | ⚙️ Scripts configurados - yarn dev → executa com TSX em modo watch - yarn build → gera bundle com esbuild - yarn start → roda a aplicação empacotada (dist/bundle.js) - yarn type → verifica tipos com TypeScript (--noEmit) | ⚙️ Preconfigured Scripts - yarn dev → run TSX in watch mode - yarn build → generate bundle with esbuild - yarn start → run the bundled app (dist/bundle.js) - yarn type → check TypeScript types (--noEmit) | | 🧱 Configuração de build com Esbuild - Usa esbuild para gerar o bundle em dist/bundle.js - Exclui dependências externas (external) automaticamente | 🧱 Esbuild Build Configuration - Uses esbuild to bundle into dist/bundle.js - Automatically excludes external dependencies (external) | | 📦 Instalação de dependências - Instala automaticamente: typescript, tsx, esbuild, @types/node - Gera e edita o tsconfig.json com rootDir: "./src" | 📦 Dependency Installation - Automatically installs: typescript, tsx, esbuild, @types/node - Generates and edits tsconfig.json with rootDir: "./src" | | 🎨 Terminal interativo com cores - Mensagens estilizadas com cores ANSI - Ícones para melhor UX (🚀, ✅, 📦 etc) | 🎨 Interactive Terminal with Colors - Messages styled with ANSI colors - Icons for better CLI UX (🚀, ✅, 📦 etc) |

🚀 Comece agora / Get Started

yarn create kit-dev