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

@zhangyunjie/cli

v2.0.4

Published

Functions based CLI framework

Downloads

2

Readme

CLI node version Build Status npm version

Functions based CLI framework

Quick Start

$ npm install @zhangyunjie/cli --save
$ touch yourScript.js                    # add your script file
$ chmod a+x ./yourScript.js              # add execute permissions

yourScript.js:

#!/usr/bin/env node
const { cli } = require('@zhangyunjie/cli')

cli((options, name = '', surname = '') => {
  console.log(`Hello ${name} ${surname}!`)
  if (options.yay) {
    console.log('YAY!')
  }
})
$ ./yourScript.js Pawel Galazka
Hello Pawel Galazka!
$ ./yourScript.js Pawel Galazka --yay
Hello Pawel Galazka!
YAY!

Add help

#!/usr/bin/env node
const { cli, withHelp } = require('@zhangyunjie/cli')

cli(withHelp((options, name = '', surname = '') => {
  console.log(`Hello ${name} ${surname}!`)
  if (options.yay) {
    console.log('YAY!')
  }
}, 'Script description'))
$ ./yourScript.js --help
Usage: yourScript.js

Script description

You can also add more detailed help which will print out info about options and params:

#!/usr/bin/env node
const { cli, help } = require('@zhangyunjie/cli')

function command(options, name = '', surname = '') {
  console.log(`Hello ${name} ${surname}!`)
  if (options.yay) {
    console.log('YAY!')
  }  
}

help(command, 'Script description', {
  options: {
    yay: 'print yay'
  },
  params: ['name', 'surname']
})

cli(command)
$ ./yourScript.js --help
Usage: yourScript.js [options] [name surname]

Script description

Options:

  --yay       print yay

Add commands

const { cli, help } = require('@zhangyunjie/cli')

help(cmd1, 'Description of first command')

function cmd1(options) {
  console.log('First command')
}

help(cmd2, 'Description of second command')

function cmd2(options) {
  console.log('Second command')
}

help(defaultCmd, 'Description of default command')
function defaultCmd(options) {
  console.log('Default command')
}

cli({
  cmd1,
  cmd2,
  default: defaultCmd
})
$ ./yourScript.js cmd1
First command
$ ./yourScript.js
Default command

Mutlicommand version of cli can as well accept options and params which will be passed to proper function. --help generation is handled too.

Add namespaces

To better organise commands, it is possible to group them in namespaces:

const test = {
  unit (options) {
    console.log('Doing unit testing!')
  }

  e2e (options) {
    console.log('Doing e2e testing!')
  }
}

cli({
  test
})
$ ./yourScript.js test:unit
Doing unit testing!

Because namespace is just an object with functions, namespace can be created also from a module:

./commands/test.js:

function unit () {
  console.log('Doing unit testing!')
}

function e2e () {
  console.log('Doing e2e testing!')
}

module.exports = {
  unit,
  integration
}

./yourScript.js

const test = require('./commands/test')

cli({
  test
})
$ ./yourScript.js test:unit
Doing unit testing!

Add middleware

You can customise behaviour of cli framework by middleware system. cli itself is build on chain of middlewares.

To add custom middleware:

#!/usr/bin/env node
const { cli, useMiddlewares } = require('@zhangyunjie/cli')

const customMiddleware = next => ({ 
    options, 
    params,
    command,
    definition, 
    namespace
  }) => {

  const nextParams = params.map(param => param.toUpperCase())
  // Run next middleware
  next({ options, params: nextParams, command, definition, namespace })
}

cli((options, name = '', surname = '') => {
  console.log(`Hello ${name} ${surname}!`)
}, useMiddlewares([customMiddleware]))
$ ./yourScript.js Pawel Galazka
Hello PAWEL GALAZKA!

What useMiddlewares does, it takes your middleware and puts it within the chain with default middlewares, which looks like this:

[
    errorsHandler(logger),
    argsParser(argv),
    commandFinder,
    helper(logger, argv),
    validator,
    rawArgsParser(argv),
    ...middlewares, // here goes your middlewares
    commandCaller
]

So custom middlewares gets called right before calling command function. You can totally customise the chain by not using useMiddlewares. You can provide an array of middlewares directly to cli as a second argument, instead of useMiddlewares call. By this default chain of middlewares will get overwritten.

Use TypeScript

cli has support for TypeScript. TS types are included within the library, so you can write your scripts fully in TypeScript with usage of ts-node:

$ npm install ts-node --save-dev

yourScript.ts:

#!/usr/bin/env ts-node
import { cli } from '@zhangyunjie/cli'

cli((options, name = '', surname = '') => {
  console.log(`Hello ${name} ${surname}!`)
})