# list-ips

> Generate lists of IPs using wildcards and ranges

Latest version **1.0.6** (published 2017-01-05) · MIT license · 0 weekly downloads

## Install

```sh
npm install list-ips
pnpm add list-ips
yarn add list-ips
bun add list-ips
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.6 |
| Published | 2017-01-05 |
| First published | 2016-01-31 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Daniel Cohen |
| Maintainers | dcohenb |
| Keywords | ip, ipv4, list |

## Links

- npm: https://www.npmjs.com/package/list-ips
- Repository: https://github.com/dcohenb/list-ips
- Homepage: https://github.com/dcohenb/list-ips#readme
- Issues: https://github.com/dcohenb/list-ips/issues
- npm.io page: https://npm.io/package/list-ips

## Alternatives

- [lodash.startswith](https://npm.io/package/lodash.startswith.md) — 769.7K weekly downloads
- [@tarojs/service](https://npm.io/package/@tarojs/service.md) — 33.9K weekly downloads
- [io.extendreality.tilia.indicators.spatialtargets.unity](https://npm.io/package/io.extendreality.tilia.indicators.spatialtargets.unity.md) — 131 weekly downloads
- [@rtarojs/taro](https://npm.io/package/@rtarojs/taro.md) — 90 weekly downloads
- [node-branch-io](https://npm.io/package/node-branch-io.md) — 50 weekly downloads

## Recent versions

- 1.0.6 (latest) — 2017-01-05
- 1.0.5 — 2016-05-04
- 1.0.4 — 2016-05-04
- 1.0.3 — 2016-01-31
- 1.0.2 — 2016-01-31
- 1.0.1 — 2016-01-31
- 1.0.0 — 2016-01-31

## README

# list-ips


Generate simple arrays of valid ipv4 ips for whatever reason.

[![NPM](https://nodei.co/npm/list-ips.png?downloads=true)](https://nodei.co/npm/list-ips/)

# Usage:

```javascript
var listIps = require('list-ips');

// Simple range
listIps.list('192.0.0.0-10') // [192.0.0.0, 192.0.0.1, ..., 192.0.0.10]

// Wildcards
listIps.list('192.0.0.*') // [192.0.0.0, 192.0.0.1, ..., 192.0.0.255]

// Combine
listIps.list('192.0.1-2.*') // [192.0.1.0, ..., 192.0.1.255, 192.0.2.0, ..., 192.0.2.255]
```

# Contribution:
Please Do.

# License:
The MIT License, Check out the LICENSE file

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