-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c6cc7df
commit 52d350d
Showing
2 changed files
with
134 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
# CPF and CNPJ Generator / Gerador de CPF e CNPJ | ||
|
||
[![npm version](https://badge.fury.io/js/cpf_and_cnpj-generator.svg?refresh=5)](https://badge.fury.io/js/cpf_and_cnpj-generator) | ||
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) | ||
[![npm downloads](https://img.shields.io/npm/dm/cpf_and_cnpj-generator.svg?style=flat-square)](https://npm-stat.com/charts.html?package=cpf_and_cnpj-generator) | ||
|
||
If you want to help me, you can buy me a coffee (: | ||
|
||
<p align="center"> | ||
<a href="https://www.buymeacoffee.com/gabriellogan" target="_blank"> | ||
<img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 35px !important;width: 180px !important;" > | ||
</a> | ||
</p> | ||
|
||
## English | ||
|
||
This npm package provides JavaScript functions to generate valid Brazilian CPF (Cadastro de Pessoas Físicas) and CNPJ (Cadastro Nacional da Pessoa Jurídica) numbers. | ||
|
||
## CDN | ||
|
||
unpkg: | ||
```bash | ||
https://unpkg.com/[email protected]/dist/bundle.js | ||
``` | ||
```html | ||
<script src="https://unpkg.com/[email protected]/dist/bundle.js"></script> | ||
``` | ||
|
||
### Installation | ||
|
||
You can install this package using npm: | ||
|
||
```bash | ||
npm install cpf_and_cnpj-generator | ||
``` | ||
|
||
How to Use | ||
After installing the package, you can use it in your JavaScript project: | ||
|
||
|
||
```javascript | ||
// Using import | ||
import generator from 'cpf_and_cnpj-generator'; | ||
|
||
console.log(generator.generateCnpj()); | ||
console.log(generator.generateCpf()); | ||
|
||
// Or | ||
import { generateCnpj, generateCpf } from 'cpf_and_cnpj-generator'; | ||
|
||
console.log(generateCnpj()); | ||
console.log(generateCpf()); | ||
|
||
// Using require | ||
const generator = require('cpf_and_cnpj-generator'); | ||
|
||
console.log('CPF generated:', generator.generateCnpj()); | ||
console.log('CNPJ generated:', generator.generateCpf()); | ||
|
||
// Or | ||
const { generateCpf, generateCnpj } = require('cpf_and_cnpj-generator'); | ||
|
||
console.log('CPF generated:', generateCnpj()); | ||
console.log('CNPJ generated:', generateCpf()); | ||
``` | ||
|
||
Keep in mind that the code to import or require depends on the JavaScript environment you're running the package in (for example, Node.js with or without ES module support). Therefore, choose the import or require option that suits your environment. | ||
|
||
########################################################################################## | ||
|
||
Português | ||
|
||
Este pacote npm fornece funções em JavaScript para gerar números válidos de CPF (Cadastro de Pessoas Físicas) e CNPJ (Cadastro Nacional da Pessoa Jurídica) para o Brasil. | ||
|
||
## DOC | ||
|
||
https://gabriel-logan.github.io/Gerador-CPF-e-CNPJ-valido | ||
|
||
## CDN | ||
|
||
unpkg: | ||
```bash | ||
https://unpkg.com/[email protected]/dist/bundle.js | ||
``` | ||
```html | ||
<script src="https://unpkg.com/[email protected]/dist/bundle.js"></script> | ||
``` | ||
|
||
## Instalação | ||
Você pode instalar este pacote usando npm: | ||
|
||
```bash | ||
npm install cpf_and_cnpj-generator | ||
``` | ||
|
||
## Como Usar | ||
Após instalar o pacote, você pode utilizá-lo em seu projeto JavaScript: | ||
|
||
```javascript | ||
// Usando import | ||
import gerador from 'cpf_and_cnpj-generator'; | ||
|
||
console.log(gerador.generateCnpj()); | ||
console.log(gerador.generateCpf()); | ||
|
||
// Ou | ||
import { generateCnpj, generateCpf } from 'cpf_and_cnpj-generator'; | ||
|
||
console.log(generateCnpj()); | ||
console.log(generateCpf()); | ||
|
||
// Usando require | ||
const gerador = require('cpf_and_cnpj-generator'); | ||
|
||
console.log('CPF Gerado:', gerador.generateCnpj()); | ||
console.log('CNPJ Gerado:', gerador.generateCpf()); | ||
|
||
// Ou | ||
const { generateCpf, generateCnpj } = require('cpf_and_cnpj-generator'); | ||
|
||
console.log('CPF Gerado:', generateCnpj()); | ||
console.log('CNPJ Gerado:', generateCpf()); | ||
``` | ||
|
||
If you want to help me, you can buy me a coffee (: | ||
|
||
<p align="center"> | ||
<a href="https://www.buymeacoffee.com/gabriellogan" target="_blank"> | ||
<img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 35px !important;width: 180px !important;" > | ||
</a> | ||
</p> | ||
|
||
Lembre-se de que o código de importação ou require depende do ambiente JavaScript em que você está executando o pacote (por exemplo, Node.js com suporte a módulos ES ou sem suporte). Portanto, escolha a opção de importação ou require adequada ao seu ambiente. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters