# gerar-cpf

> Generate random Brazilian CPF document numbers.

Latest version **3.1.0** (published 2024-05-28) · MIT license · 0 weekly downloads

## Install

```sh
npm install gerar-cpf
pnpm add gerar-cpf
yarn add gerar-cpf
bun add gerar-cpf
```

## Health

**Score 40/100 (D)** — status: abandoned.

Positive: has types; no vulnerabilities; has provenance; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 3.1.0 |
| Published | 2024-05-28 |
| First published | 2014-07-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 9.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 2 |
| Author | Guilherme Nagatomo |
| Maintainers | guilhermehn |
| Keywords | cpf, gerar, gerador, generate, random, Brazilian |

## Links

- npm: https://www.npmjs.com/package/gerar-cpf
- Repository: https://github.com/guilhermehn/gerar-cpf
- Issues: https://github.com/guilhermehn/gerar-cpf/issues
- npm.io page: https://npm.io/package/gerar-cpf

## Recent versions

- 3.1.0 (latest) — 2024-05-28
- 2.0.3 — 2019-01-17
- 2.0.2 — 2018-05-08
- 2.0.1 — 2017-11-27
- 2.0.0 — 2017-11-17
- 1.3.0 — 2014-11-04
- 1.2.2 — 2014-11-04
- 1.2.0 — 2014-07-16
- 1.1.0 — 2014-07-16
- 1.0.0 — 2014-07-16

## README

# gerar-cpf

Generate random Brazilian CPF document numbers.

[![Actions Status](https://github.com/guilhermehn/gerar-cpf/workflows/Node%20CI/badge.svg)](https://github.com/guilhermehn/gerar-cpf/actions)
[![npm version](https://badge.fury.io/js/gerar-cpf.svg)](http://badge.fury.io/js/gerar-cpf)
[![Coverage Status](https://coveralls.io/repos/github/guilhermehn/gerar-cpf/badge.svg?branch=master)](https://coveralls.io/github/guilhermehn/gerar-cpf?branch=master)
[![Known Vulnerabilities](https://snyk.io/test/github/guilhermehn/gerar-cpf/badge.svg)](https://snyk.io/test/github/guilhermehn/gerar-cpf)
[![Greenkeeper badge](https://badges.greenkeeper.io/guilhermehn/gerar-cpf.svg)](https://greenkeeper.io/)

```
npm install --save gerar-cpf
```

## Usage

```js
const generateCpf = require('gerar-cpf');
const list = [];

while (list.length < 100) {
	list.push(generateCpf());
}
```

## License

MIT

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