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 🙏

© 2024 – Pkg Stats / Ryan Hefner

microbes

v0.0.1

Published

Event-Driven Micro-Services Framework For The Software Supply Chain.

Downloads

5

Readme

Microbes

Toolkit for building shining CLI programs in Node.js.

Circle CI

Features

  • Forced & clean organization of program code
  • Command name generation based on folder structure
  • CLI tool to quickly create program skeleton and commands
  • Auto-generated usage and help
  • Small codebase (269 sloc)
  • Program auto-updates itself when new version is available

Installation

npm install microbes --global

Getting Started

Creating basic structure

Execute the following command to generate basic skeleton for your program:

microbes new hello-world

Microbes will create a hello-world directory (if it does not exists or empty) and put everything that's needed to start developing your CLI tool immediately:

Initialization

Here's how to initialize CLI program using Microbes:

var microbes = require('microbes');

var program = microbes(__dirname); // root path, where commands folder is

program.run();

Creating commands

Next, to setup some commends, simply create folders and files. The structure you create, will be reflected in your program. For example, if you create such folders and files:

commands/
--  apps.js
--  apps/
    -- add.js
    -- remove.js
--  keys/
    -- dump.js

In result, Microbes, will generate these commands for you automatically:

$ hello-world apps
$ hello-world apps add
$ hello-world apps remove
$ hello-world keys dump

Each folder is treated like a namespace and each file like a command, where file name is command name.

To actually create handlers for those commands, in each file, Command should be defined:

var Command = require('microbes').Command;

var AppsAddCommand = module.exports = Command.extend({
    desc: 'This command adds application',
    
    run: function (name) {
        // create an app with name given in arguments
    }
});

To run this command, execute:

$ hello-world apps add great-app

Whatever arguments passed to command after command name, will be passed to .run() method in the same order they were written.

Specifying options

You can specify options and their properties using options object.

var AppsDestroyCommand = module.exports = Command.extend({
    desc: 'This command removes application',
    
    options: {
        name: 'string',
        force: {
            type: 'boolean',
            alias: 'f'
        }
    },
    
    run: function (name, force) {
        if (!force) {
            throw new Error('--force option is required to remove application');
        }
        
        // remove app
    }
});

Note: Options will be passed to .run() method in the same order they were defined.

Customizing help

By default, Microbes generates help for each command and for whole program automatically. If you wish to customize the output, override .help() method in your command (program help can not be customized at the moment):

var HelloCommand = Command.extend({
    help: function () {
        return 'Usage: ' + this.programName + ' ' + this.name + ' [OPTIONS]';
    },
    
    desc: 'Hello world'
});

Customizing command delimiter

By default, Microbes separates sub-commands with a space. If you want to change that delimiter, just specify this option when initializing Microbes:

var program = microbes();

program.set({
    path: __dirname,
    delimiter: ':'
});

program.run();

After that, apps create command will become apps:create.

Middleware

There are often requirements to perform the same operations/checks for many commands. For example, user authentication. In order to avoid code repetition, Microbes implements middleware concept. Middleware is just a function, that accepts the same arguments as .run() function + callback function. Middleware functions can be asynchronous, it makes no difference for Microbes.

Let's take a look at this example:

var UsersAddCommand = Command.extend({
    use: ['auth', 'beforeRun'],
    
    run: function (name) {
        // actual users add command
    },
    
    beforeRun: function (name, next) {
        // will execute before .run()
        
        // MUST call next() when done
        next();
    }
});

In this example, we've got 2 middleware functions: auth and beforeRun. Microbes allows you to write middleware functions inside commands or inside root/middleware directory. So in this example, Microbes will detect that beforeRun function is defined inside a command and auth function will be required from root/middleware/auth.js file.

Note: To interrupt the whole program and stop execution, just throw an error.

Auto-updating

To make your program auto-update itself, only 1 line of code needed. Go to your program's index file and replace program.run() with this:

program.autoupdate(function () {
  program.run();
});

From now on, your program will check for updates once a day and if new update is available, it will automatically install it. How cool is this?

Tests

npm test

License

Microbes is released under the MIT License.