0.0.2 • Published 9 years ago

cep-brazil v0.0.2

Weekly downloads
8
License
-
Repository
github
Last release
9 years ago

cep-brazil

Get zip-code info

Usage

var cep = require('cep-brazil');
cep.get('04193020')
  .then(function (data) {
    console.log(data);
    /*
      { street: 'Rua Doutor Benedito Tolosa',
        district: 'Parque Bristol',
        city: 'São Paulo',
        state: 'SP',
        zipCode: '04193020' 
      }

    */
  }).fail(function(err) {
      console.log(err);
      return;
  });