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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@meebon/meebon-cli

v1.11.1

Published

## Description

Downloads

16

Readme

Meebon CLI

Description

Meebon CLI is a command-line tool designed to streamline the creation of new projects and the generation of code using templates. It supports creating projects from predefined templates or by cloning existing Git repositories. Additionally, it provides a "Shadow Command" for API template projects, enabling the generation of modules and entities based on predefined configurations.

Install

npm i -g @meebon/meebon-cli

Usage

Create a new project from a template:

This command initializes a new project using a predefined template.

npx meebon project

Available Templates:

  • api-type-orm-v2: A template for creating a REST API using TypeORM and Express.
  • meebon-package-template: A basic Node.js TypeScript library template.

Create a new project from a repository:

This command clones an existing Git repository to create a new project. Replace <github-username>/<repository-name> with the actual repository URL.

npx meebon project --repo <github-username>/<repository-name>

Shadow Command (API Project Template)

The Shadow Command is specifically designed for API project templates. It provides tools to generate modules and entities, offering helpers to create models and associated code for your API projects based on predefined configurations.

Initialize the project for Shadow:

This command initializes the shadow configuration for an API template project.

npx meebon shadow --init

Generate modules or entities using Shadow:

This command generates modules or entities based on the specified category.

npx meebon shadow --category <category-name>
  • Available categories: modules, entity

Features

  • Project Creation:
    • Create new projects from predefined templates.
    • Create new projects by cloning from existing Git repositories.
  • Shadow Command:
    • Initialize shadow configuration.
    • Generate code for modules and entities based on templates for API projects.

Template Directory (API Template)

This is a typical directory structure for an API template project:

📁 project-name
 ├── 📁 src
 │   ├── 📁 entity
 │   │   └── 📄 User.ts
 │   ├── 📁 modules
 │   │   └── 📁 user
 │   │       ├── 📁 controllers
 │   │       │   └── 📄 UserController.ts
 │   │       ├── 📁 interfaces
 │   │       │   └── 📄 IUserService.ts
 │   │       └── 📁 services
 │   │           └── 📄 UserService.ts
 │   ├── 📄 app.ts
 │   ├── 📄 server.ts
 ├── 📁 template
 │   └── 📁 shadow
 │       ├── 📁 entity
 │       │   └── 📄 entity.template
 │       └── 📁 module-template
 │           ├── 📁 controllers
 │           │   └── 📄 moduleController.template
 │           ├── 📁 interfaces
 │           │   └── 📄 ImoduleService.template
 │           └── 📁 services
 │               └── 📄 moduleService.template
 ├── 📄 shadow.config.json
 ├── 📄 package.json
 ├── 📄 ...

Future Updates

  • [ ] Add more templates
  • [ ] Support private repositories
  • [ ] Enhance Shadow command with more options and customization

Contributing

Contributions are welcome! Please follow these steps:

  1. Fork the repository.
  2. Create a new branch for your feature or bug fix.
  3. Commit your changes with descriptive commit messages.
  4. Submit a pull request.

License

MIT