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

krito

v2.1.0

Published

Scaffold modern full-stack apps with React, Tailwind, Express, and MongoDB — instantly.

Readme

Krito ⚡

npm version license node

Krito is a full-stack CLI scaffolding tool that kickstarts modern web apps with an optimized developer experience.

It sets up a project with:

  • Frontend: Vite + React + Tailwind CSS + React Router + Axios + Lucide React
  • Backend: Express.js + MongoDB (via Mongoose) + Dotenv + CORS + Modular Structure
  • Dev Tools: Nodemon (for backend development)

Created by Satyam Rana, Krito helps you avoid repetitive setup and dive straight into building.


Features

  • Instant full-stack project setup with one command
  • Clean folder structure with frontend and backend
  • Pre-configured Tailwind CSS and Vite plugin integration
  • React Router and Axios pre-installed
  • Express server setup with routing, controllers, models, and config
  • MongoDB integration via Mongoose
  • Health check endpoint (GET /health)
  • .env files for both frontend and backend
  • .gitignore auto-generated
  • Development-ready tooling like Nodemon
  • Graceful error handling and rollback on failure
  • SIGINT (Ctrl+C) handling during setup
  • Beautiful spinner-based terminal UI
  • Zero configuration required

Installation

npm install -g krito

Usage

krito my-app

This creates a new full-stack app named my-app.

Scaffold in Current Directory

mkdir my-app && cd my-app
krito .

Using . creates frontend/ and backend/ directly inside the current directory.

CLI Options

krito --help          # Show help
krito --version       # Show version
krito -v              # Show version (shorthand)
krito <project-name>  # Create a new project
krito .               # Scaffold in current directory

Project Name Rules

  • Lowercase letters, numbers, hyphens, dots, underscores, and tildes only
  • Cannot start with a dot or underscore
  • Must be under 214 characters

Project Structure

my-app/
├── .gitignore
├── frontend/           # React + Vite + Tailwind + React Router + Axios + Lucide
│   ├── src/
│   │   ├── App.jsx
│   │   ├── main.jsx
│   │   └── index.css
│   ├── vite.config.js
│   └── .env
├── backend/            # Express + MongoDB + CORS + Dotenv + Mongoose
│   ├── server.js
│   ├── routes/
│   ├── models/
│   ├── controllers/
│   ├── middleware/
│   ├── config/
│   │   └── dbConfig.js
│   └── .env

Technologies Used

Frontend

Backend


Getting Started

# Create a new project
krito my-app

# Start frontend
cd my-app/frontend
npm run dev

# Start backend (in a separate terminal)
cd my-app/backend
npm run dev

The frontend runs on http://localhost:5173 and the backend on http://localhost:5000.

API Endpoints

| Method | Endpoint | Description | | ------ | --------- | ------------------------ | | GET | / | API is live message | | GET | /health | Health check with uptime |


Requirements

  • Node.js >= 18
  • npm >= 8
  • MongoDB (for backend database)

Contributing

Contributions are welcome! Please open an issue or submit a pull request.


License

ISC


Author

Satyam Rana Curiosity is the real compiler.