Socket
Socket
Sign inDemoInstall

@types/minimist

Package Overview
Dependencies
0
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @types/minimist

TypeScript definitions for minimist


Version published
Weekly downloads
8.7M
decreased by-18.83%
Maintainers
1
Install size
6.12 kB
Created
Weekly downloads
 

Package description

What is @types/minimist?

The @types/minimist package provides TypeScript type definitions for the minimist package, which is a library for parsing argument options. This allows TypeScript developers to use minimist in their projects with the benefits of type checking and IntelliSense in their IDEs. The main purpose of @types/minimist is to enhance developer experience by providing explicit types for the functions and objects used in minimist.

What are @types/minimist's main functionalities?

Parsing command line arguments

This code demonstrates how to use minimist to parse command line arguments. The process.argv array is sliced to remove the first two elements (node path and script path), and the remaining elements are parsed by minimist. The result is an object where keys are option names and values are option values.

import minimist from 'minimist';
const argv = minimist(process.argv.slice(2));
console.log(argv);

Other packages similar to @types/minimist

Readme

Source

Installation

npm install --save @types/minimist

Summary

This package contains type definitions for minimist (https://github.com/substack/minimist).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/minimist.

Additional Details

  • Last updated: Tue, 07 Nov 2023 09:09:39 GMT
  • Dependencies: none

Credits

These definitions were written by Bart van der Schoor, Necroskillz, kamranayub, and Piotr Błażejewicz.

FAQs

Last updated on 07 Nov 2023

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