Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

argcom

Package Overview
Dependencies
Maintainers
0
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

argcom

`argcom` is a straightforward CLI argument parser with no added complexity or opinions.

  • 1.0.3
  • latest
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

argcom

argcom is a straightforward CLI argument parser with no added complexity or opinions.

Installation

To install the package, use npm:

pnpm add argcom

yarn install argcom

npm install argcom

Usage

argcom() accepts one or two arguments:

  1. A command line specification object.
  2. An optional options object, which defaults to { permissive: false, argv: process.argv.slice(2), stopAtPositional: false }.

It returns an object containing the command-line values. Any parameters not used by options are placed in the result._ array, which is always returned (even if empty). argcom() does not validate or enforce requirements—this is up to the application.

// index.ts
import { argcom } from 'argcom';

const args = arg({
	// Types
	'--help': Boolean,
	'--version': Boolean,
	'--verbose': arg.COUNT, // Counts the number of times --verbose is passed
	'--port': Number, // --port <number> or --port=<number>
	'--host': String, // --host <string> or --host=<string>
	'--tag': [String], // --tag <string> or --tag=<string>

	// Aliases
	'-v': '--verbose',
	'-h': '--host', // -h <string>; result is stored in --host
	'--domain': '--host' // --domain <string> or --domain=<string>;
	//     result is stored in --host
});

console.log(args);
/*
{
	_: ["foo", "bar", "--foobar"],
	'--port': 3000,
	'--verbose': 4,
	'--host': "localhost",
	'--tag': ["tag1", "tag2"]
}
*/

tsup

Bundle your TypeScript library with no config, powered by esbuild.

https://tsup.egoist.dev/

How to use this

  1. install dependencies
# pnpm
$ pnpm install

# yarn
$ yarn install

# npm
$ npm install
  1. Add your code to src
  2. Add export statement to src/index.ts
  3. Test build command to build src. Once the command works properly, you will see dist folder.
# pnpm
$ pnpm run build

# yarn
$ yarn run build

# npm
$ npm run build
  1. Publish your package
$ npm publish

test package

https://www.npmjs.com/package/argcom

FAQs

Package last updated on 16 Sep 2024

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