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

heyjarvis

v1.0.9

Published

J.A.R.V.I.S. - Advanced Node.js MVC Framework with ORM, built-in validation, soft delete, and query builder

Downloads

10

Readme

🤖 J.A.R.V.I.S. Framework CLI

Advanced Node.js MVC Framework Generator - Just A Rather Very Intelligent System

📦 Installation

# Global installation (recommended)
npm install -g heyjarvis

# Or use directly with npx
npx heyjarvis create my-project

🚀 Quick Start

# Interactive project creation
jarvis init

# Or direct creation
jarvis create my-awesome-project

# Navigate and start
cd my-awesome-project
npm run dev

Create Project

# Basic project
jarvis create my-project

# With specific template and database
jarvis create my-api --template api --database postgres

# Skip npm install
jarvis create my-project --no-install

Generate Components

# Generate model
jarvis generate model User --fields name:string,email:string,age:integer

# Generate controller
jarvis g controller UserController

# Generate route
jarvis g route users

Database Operations

# Setup database configuration
jarvis database:setup
jarvis db:setup

Interactive Mode

# Step-by-step project creation
jarvis init

🎨 Templates

1. Basic Template (basic)

  • Express.js + Sequelize
  • MVC architecture
  • Session management
  • Basic folder structure

2. API Template (api)

  • REST API focused
  • CORS & Helmet security
  • Rate limiting
  • Test structure
  • API documentation

3. Full Template (full)

  • Complete full-stack setup
  • Authentication system
  • File uploads
  • Email system
  • Job queues
  • Database migrations

🗄️ Database Support

  • MySQL (default)
  • PostgreSQL
  • SQLite

📊 Generated Project Structure

my-project/
├── src/
│   ├── app.js              # Application entry
│   ├── config/             # Configuration
│   │   └── database.js     # Database config
│   ├── controllers/        # Route controllers
│   ├── models/             # Sequelize models
│   ├── routes/             # Express routes
│   ├── middleware/         # Custom middleware
│   ├── helpers/           # Utility functions
│   ├── services/          # Business logic
│   └── views/             # Templates (if applicable)
├── public/                # Static files
├── tests/                 # Test files
├── package.json
├── .env                   # Environment variables
├── .gitignore
└── README.md

⚙️ Configuration

Environment Variables

PORT=3000
NODE_ENV=development
SESSION_SECRET=your-secret-key

# Database
DB_HOST=localhost
DB_NAME=jarvis_db
DB_USER=root
DB_PASS=
DB_PORT=3306

🔧 Development

Prerequisites

  • Node.js >= 14.0.0
  • npm >= 6.0.0

Setup Development Environment

# Clone repository
git clone https://github.com/your-username/heyjarvis
cd heyjarvis

# Install dependencies
npm install

# Link for local development
npm link

# Test CLI
jarvis --help

📚 Examples

Creating a Blog Project

jarvis create my-blog --template full --database mysql
cd my-blog
jarvis g model Post --fields title:string,content:text,published:boolean
jarvis g controller PostController
jarvis g route posts

Creating an API Service

jarvis create my-api --template api --database postgres
cd my-api
jarvis g model User --fields name:string,email:string
jarvis db:setup
npm run dev

🤝 Contributing

  1. Fork the repository
  2. Create feature branch (git checkout -b feature/amazing-feature)
  3. Commit changes (git commit -m 'Add amazing feature')
  4. Push to branch (git push origin feature/amazing-feature)
  5. Open Pull Request

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

🛠️ Roadmap

  • [ ] Authentication generators
  • [ ] Docker support
  • [ ] GraphQL template
  • [ ] TypeScript support
  • [ ] Database seeding
  • [ ] API documentation generator
  • [ ] Deployment tools
  • [ ] Plugin system

💡 Support


Made with ❤️ by J.A.R.V.I.S. Framework Team