Socket
Socket
Sign inDemoInstall

@allegiant/cmdhelper

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @allegiant/cmdhelper

Simple command line argument parser library.


Version published
Weekly downloads
4
Maintainers
1
Install size
4.40 kB
Created
Weekly downloads
 

Readme

Source

cmdhelper

Simple command line argument parser library.

const cmdHelper = require('@allegiant/cmdhelper');
const SETTINGS = cmdHelper.process(params => {
    return {
        host: params.get('host') || '0.0.0.0',
        port: params.get('port') || 80
    };
});

SETTINGS will now hold the two properties, 'host' and 'port'. These are available to the command line as --host "hostname" and --port "port number" respectively.

Note

This is a preliminary release, api breakage may happen.

Copyright © 2017 Allegiant. Distributed under the terms of the MIT License, see LICENSE

Availble via npm or github.

FAQs

Last updated on 26 Dec 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc