# argify

> simple bit of code to parse command-line args

Latest version **0.0.3** (published 2015-05-19) · 0 weekly downloads

## Install

```sh
npm install argify
pnpm add argify
yarn add argify
bun add argify
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2015-05-19 |
| First published | 2014-09-25 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Ben Bradley |
| Maintainers | ben-bradley |
| Keywords | args, arguments |

## Links

- npm: https://www.npmjs.com/package/argify
- Repository: git@github.com:ben-bradley/argify
- Homepage: https://ben-bradley.github.io/argify
- Issues: https://github.com/ben-bradley/argify/issues
- npm.io page: https://npm.io/package/argify

## Recent versions

- 0.0.3 (latest) — 2015-05-19
- 0.0.2 — 2014-10-09
- 0.0.1 — 2014-09-25

## README

# Argify [![Build Status](https://secure.travis-ci.org/ben-bradley/argify.png)](http://travis-ci.org/ben-bradley/argify)

A very small bit of code that I got tired of typing again and again.

It parses command line arguments formatted like: `$ node ./yourscript.js --blargh=honk`

## Install

`npm install argify`

`npm install ben-bradley/argify`

## Use

```javascript
// yourscript.js
var args = require('argify');

console.log(args);        // stdout: { blargh: 'honk' }
console.log(args.blargh); // stdout: 'honk'
console.log(args.foo);    // stdout: true
```

`$ node ./yourscript.js --blargh=honk --foo`

## Version

- 0.0.3 - added boolean options
- 0.0.2 - fixed package.json keywords, added travis bling, standardized structure
- 0.0.1 - initial drop

---
_Source: https://npm.io/package/argify · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
