https://github.com/joaocarvalhowd/finducep.js
🕵️ The easy way to find the info about your CEP.
https://github.com/joaocarvalhowd/finducep.js
cep
Last synced: 9 months ago
JSON representation
🕵️ The easy way to find the info about your CEP.
- Host: GitHub
- URL: https://github.com/joaocarvalhowd/finducep.js
- Owner: joaocarvalhowd
- License: mit
- Created: 2016-12-06T20:19:36.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T14:39:14.000Z (over 2 years ago)
- Last Synced: 2025-10-01T02:32:18.748Z (10 months ago)
- Topics: cep
- Language: JavaScript
- Size: 66.4 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# finducep.js
🕵 The easy way to find the info about your CEP.
## Install
You can install this package either with `npm` or with `bower`.
### npm
```shell
npm install finducep.js --save
```
Then add the `` to your `index.html`:
```html
<script src="/node_modules/finducep.js/dist/finducep.min.js">
```
### bower
```shell
bower install finducep.js
```
Then add a `` to your `index.html`:
```html
<script src="/bower_components/finducep.js/dist/finducep.min.js">
```
## Example
```js
const cep = 05022001;
const finducep = new FindUCep();
finducep.find(cep)
.then(response => console.log(response))
.catch(error => console.log(error))
```