Socket
Socket
Sign inDemoInstall

minimost

Package Overview
Dependencies
2
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    minimost

Like minimist but flags are converted to camelCase


Version published
Weekly downloads
2.9K
increased by5.82%
Maintainers
1
Install size
45.3 kB
Created
Weekly downloads
 

Readme

Source

minimost

NPM version NPM downloads Build Status codecov donate

Features

  • Flags in kebab-case are converted to camelCase, eg: --foo-bar foo results in { fooBar: 'foo' }
  • Preserve arguments after --, eg: -- npm test results in { '--': ['npm', 'test'] }
  • Separate flags and input, eg: ./bin foo -w results in { input: ['foo'], flags: { w: true } }

Why not use meow?

This is similar to meow, but I sometime just want to parse argv without being a real CLI app.

Install

yarn add minimost

Usage

const minimost = require('minimost')

minimost(process.argv.slice(2), options)

API

minimost(argv, options)

options

minimist options, options['--'] is true by default here.

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Author

minimost © egoist, Released under the MIT License.
Authored and maintained by egoist with help from contributors (list).

egoist.sh · GitHub @egoist · Twitter @_egoistlily

FAQs

Last updated on 02 Nov 2018

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