Socket
Socket
Sign inDemoInstall

cmd-funk-hello

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cmd-funk-hello

A cmd-funk hello world


Version published
Weekly downloads
1
decreased by-75%
Maintainers
1
Weekly downloads
 
Created
Source

Command Funk Hello World

This is a small command line tool built with cmd-funk.

Installation

While you could install this globally, its probably more helpful to just clone it and play around...

# If you haven't yet, install yarn
npm install -g yarn

# Clone the repo
git clone https://github.com/Fuiste/cmd-funk-hello.git
cd cmd-funk-hello

Implementation

This is the full hello world CLI:

import {
  SimpleCommandMap,
  Marshallers,
  SimpleCommand,
  Logger,
  handleCommand,
} from "cmd-funk";

const sayHello = (cmd: SimpleCommand) => {
  Logger.debug(`Running command ${cmd.cmd}`);
  return "Hello World";
};

const BaseCommandMap: SimpleCommandMap = {
  hello: cmd => Marshallers.str(sayHello(cmd)),
  help: () =>
    Marshallers.help({
      hello: "Says hello",
    }),
};

Logger.greet("Howdy");
handleCommand(BaseCommandMap);

Try running the following commands from inside the repo folder:

yarn start hello
yarn start help
yarn start hello --silent
yarn start hello --outFile testFile
cat testFile

What's going on here?

This is a very general overview, see the main repo for more info.

Command Maps

These are mappings from commands to their implementation. They must include a help key, which provides some info about the operation of the command line.

The handleCommand call

This is the most basic function of cmd-funk. It takes only a command map and an optional custom context, then parses and runs the command for you, calling a default output handler.

The Logger

This is a logger provided by cmd-funk. It automatically silences itself when necessary, and uses a unified color scheme and format

FAQs

Package last updated on 28 May 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc