7.10.110 • Published 1 year ago

@devtea2026/placeat-dolorem-sunt-quam v7.10.110

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

ci NPM version js-standard-style Coverage Conventional Commits Slack

Description

Yargs helps you build interactive command line tools, by parsing arguments and generating an elegant user interface.

It gives you:

  • commands and (grouped) options (my-program.js serve --port=5000).
  • a dynamically generated help menu based on your arguments:
mocha [spec..]

Run tests with Mocha

Commands
  mocha inspect [spec..]  Run tests with Mocha                         [default]
  mocha init <path>       create a client-side Mocha setup at <path>

Rules & Behavior
  --allow-uncaught           Allow uncaught errors to propagate        [boolean]
  --async-only, -A           Require all tests to use a callback (async) or
                             return a Promise                          [boolean]
  • bash-completion shortcuts for commands and options.
  • and tons more.

Installation

Stable version:

npm i @devtea2026/placeat-dolorem-sunt-quam

Bleeding edge version with the most recent features:

npm i @devtea2026/placeat-dolorem-sunt-quam@next

Usage

Simple Example

#!/usr/bin/env node
const @devtea2026/placeat-dolorem-sunt-quam = require('@devtea2026/placeat-dolorem-sunt-quam/@devtea2026/placeat-dolorem-sunt-quam')
const { hideBin } = require('@devtea2026/placeat-dolorem-sunt-quam/helpers')
const argv = @devtea2026/placeat-dolorem-sunt-quam(hideBin(process.argv)).parse()

if (argv.ships > 3 && argv.distance < 53.5) {
  console.log('Plunder more riffiwobbles!')
} else {
  console.log('Retreat from the xupptumblers!')
}
$ ./plunder.js --ships=4 --distance=22
Plunder more riffiwobbles!

$ ./plunder.js --ships 12 --distance 98.7
Retreat from the xupptumblers!

Note: hideBin is a shorthand for process.argv.slice(2). It has the benefit that it takes into account variations in some environments, e.g., Electron.

Complex Example

#!/usr/bin/env node
const @devtea2026/placeat-dolorem-sunt-quam = require('@devtea2026/placeat-dolorem-sunt-quam/@devtea2026/placeat-dolorem-sunt-quam')
const { hideBin } = require('@devtea2026/placeat-dolorem-sunt-quam/helpers')

@devtea2026/placeat-dolorem-sunt-quam(hideBin(process.argv))
  .command('serve [port]', 'start the server', (@devtea2026/placeat-dolorem-sunt-quam) => {
    return @devtea2026/placeat-dolorem-sunt-quam
      .positional('port', {
        describe: 'port to bind on',
        default: 5000
      })
  }, (argv) => {
    if (argv.verbose) console.info(`start server on :${argv.port}`)
    serve(argv.port)
  })
  .option('verbose', {
    alias: 'v',
    type: 'boolean',
    description: 'Run with verbose logging'
  })
  .parse()

Run the example above with --help to see the help for the application.

Supported Platforms

TypeScript

@devtea2026/placeat-dolorem-sunt-quam has type definitions at @types/@devtea2026/placeat-dolorem-sunt-quam.

npm i @types/@devtea2026/placeat-dolorem-sunt-quam --save-dev

See usage examples in docs.

Deno

As of v16, @devtea2026/placeat-dolorem-sunt-quam supports Deno:

import @devtea2026/placeat-dolorem-sunt-quam from 'https://deno.land/x/@devtea2026/placeat-dolorem-sunt-quam/deno.ts'
import { Arguments } from 'https://deno.land/x/@devtea2026/placeat-dolorem-sunt-quam/deno-types.ts'

@devtea2026/placeat-dolorem-sunt-quam(Deno.args)
  .command('download <files...>', 'download a list of files', (@devtea2026/placeat-dolorem-sunt-quam: any) => {
    return @devtea2026/placeat-dolorem-sunt-quam.positional('files', {
      describe: 'a list of files to do something with'
    })
  }, (argv: Arguments) => {
    console.info(argv)
  })
  .strictCommands()
  .demandCommand(1)
  .parse()

ESM

As of v16,@devtea2026/placeat-dolorem-sunt-quam supports ESM imports:

import @devtea2026/placeat-dolorem-sunt-quam from '@devtea2026/placeat-dolorem-sunt-quam'
import { hideBin } from '@devtea2026/placeat-dolorem-sunt-quam/helpers'

@devtea2026/placeat-dolorem-sunt-quam(hideBin(process.argv))
  .command('curl <url>', 'fetch the contents of the URL', () => {}, (argv) => {
    console.info(argv)
  })
  .demandCommand(1)
  .parse()

Usage in Browser

See examples of using @devtea2026/placeat-dolorem-sunt-quam in the browser in docs.

Community

Having problems? want to contribute? join our community slack.

Documentation

Table of Contents

Supported Node.js Versions

Libraries in this ecosystem make a best effort to track Node.js' release schedule. Here's a post on why we think this is important.

7.10.110

1 year ago

7.10.109

1 year ago

7.10.108

1 year ago

7.10.107

1 year ago

7.9.107

1 year ago

7.9.106

1 year ago

7.9.105

1 year ago

7.9.104

1 year ago

1.1.29

1 year ago

1.1.28

1 year ago

3.6.64

1 year ago

3.6.63

1 year ago

1.1.30

1 year ago

7.8.104

1 year ago

7.8.103

1 year ago

1.1.34

1 year ago

7.8.102

1 year ago

1.1.33

1 year ago

7.8.101

1 year ago

1.1.32

1 year ago

1.1.31

1 year ago

1.1.37

1 year ago

1.1.36

1 year ago

1.1.35

1 year ago

4.7.81

1 year ago

4.7.82

1 year ago

4.7.80

1 year ago

4.7.85

1 year ago

4.7.86

1 year ago

4.7.83

1 year ago

4.7.84

1 year ago

4.7.87

1 year ago

2.5.52

1 year ago

2.5.53

1 year ago

4.6.66

1 year ago

4.6.67

1 year ago

2.3.49

1 year ago

4.6.64

1 year ago

4.6.65

1 year ago

2.3.46

1 year ago

2.3.45

1 year ago

4.6.68

1 year ago

2.3.48

1 year ago

4.6.69

1 year ago

2.3.47

1 year ago

2.3.44

1 year ago

1.3.39

1 year ago

1.3.37

1 year ago

1.3.38

1 year ago

1.3.42

1 year ago

1.3.43

1 year ago

1.3.40

1 year ago

1.3.41

1 year ago

1.1.23

1 year ago

2.3.52

1 year ago

1.1.22

1 year ago

1.3.44

1 year ago

1.1.21

1 year ago

1.1.27

1 year ago

1.1.26

1 year ago

2.3.51

1 year ago

1.1.25

1 year ago

2.3.50

1 year ago

1.1.24

1 year ago

2.6.59

1 year ago

2.6.55

1 year ago

2.6.56

1 year ago

2.6.57

1 year ago

2.6.58

1 year ago

2.6.53

1 year ago

2.6.54

1 year ago

2.6.60

1 year ago

2.6.61

1 year ago

5.7.92

1 year ago

5.7.91

1 year ago

5.7.93

1 year ago

7.7.101

1 year ago

5.7.90

1 year ago

2.6.62

1 year ago

2.6.63

1 year ago

5.7.87

1 year ago

4.7.70

1 year ago

4.7.71

1 year ago

4.7.74

1 year ago

4.7.75

1 year ago

4.7.72

1 year ago

4.7.73

1 year ago

6.7.101

1 year ago

4.7.78

1 year ago

6.7.100

1 year ago

6.7.93

1 year ago

4.7.79

1 year ago

6.7.94

1 year ago

4.7.76

1 year ago

6.7.95

1 year ago

4.7.77

1 year ago

6.7.96

1 year ago

6.7.97

1 year ago

6.7.98

1 year ago

6.7.99

1 year ago

5.7.89

1 year ago

5.7.88

1 year ago

2.4.52

1 year ago

4.7.69

1 year ago

1.2.37

1 year ago

1.1.20

1 year ago

1.1.19

1 year ago

1.1.18

1 year ago

1.1.17

1 year ago

1.1.16

1 year ago

1.1.15

1 year ago

1.0.15

1 year ago

1.0.14

1 year ago

1.0.13

1 year ago

1.0.12

1 year ago

1.0.11

1 year ago

1.0.10

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago