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

@ccci/run

v1.2.29

Published

Micro Server Helper Utilities is a command-line tool designed to simplify the development process for projects based on the **Micro Server** framework. This utility streamlines tasks such as creating new projects, adding API endpoints, and generating rout

Downloads

146

Readme

Micro Server Helper Utilities

Micro Server Helper Utilities is a command-line tool designed to simplify the development process for projects based on the Micro Server framework. This utility streamlines tasks such as creating new projects, adding API endpoints, and generating routes, controllers, and models.


Features

  • Project Initialization: Quickly scaffold a new Micro Server project.
  • API Endpoint Generation: Automatically create routes, controllers, and models for new API endpoints.
  • Seamless Integration: Ensure generated components align with the Micro Server structure.

Installation

  1. Install the utility globally using Bun.js or npm:

    bun add -g @ccci/run
    # or
    npm install -g @ccci/run
  2. Verify the installation (WIP):

    @ccci/run --version

Usage

1. Initialize a New Project

Create a new Micro Server project:

bunx @ccci/run init <project-name>

This will scaffold the directory structure, install dependencies, and set up a basic configuration.

2. Generate an API Endpoint

Add a new API endpoint along with the necessary route, controller, and model:

bunx @ccci/run create api <endpoint-name>

Example:

bunx @ccci/run create api users

This creates:

  • /routes/users.js
  • /controller/UserController.js
  • /models/User.js

3. Generate a Custom Route

Add a standalone route without creating a model or controller:

bunx @ccci/run create route <route-name>

Example:

bunx @ccci/run create route product

This creates:

  • /routes/product.js

4. Generate a Controller

Create a new controller file:

bunx @ccci/run create controller <controller-name>

Example:

bunx @ccci/run create controller order

This creates:

  • /controller/OrderController.js

5. Generate a Model

Create a new Sequelize model:

bunx @ccci/run create model <model-name>

Example:

bunx @ccci/run create model Order

This creates:

  • /models/Order.js

Configuration (WIP)

The tool can be configured using a .microserver-helper.config.js file in the project root. Example configuration:

module.exports = {
  templates: {
    route: './templates/route.js',
    controller: './templates/controller.js',
    model: './templates/model.js',
  },
};

Default Templates

Default templates are used for generating files. Modify these templates to suit your project requirements.


Examples

Initialize a Project

bunx @ccci/run init my-new-project

This creates a new project in the current working directory with the following structure:

my-new-project/
├── /routes
├── /controller
├── /models
├── app.ts
├── package.json

Add a New Endpoint

cd my-new-project
bunx @ccci/run create api task

Creates the necessary files for managing a task API endpoint.


Scripts

  • bunx @ccci/run init: Initialize a new project.
  • bunx @ccci/run create: Generate components (endpoint, route, controller, model).

License

This tool is licensed under the MIT License.


Contributing

Contributions are welcome! Submit a pull request or open an issue to share your ideas or report bugs.