address-finder
v1.0.6
Published
find country state city pin-code
Downloads
2
Readme
address-finder
An Address finder package for node js.
Written in ES5/ES6 for maximum compatibility. Get Pincode details of all regions of india only. Find here the full address by Pincode or Zipcode. The PinCode is 6 digits long. It is used to identify and refer to a location, gather demographic data, and route planning.
Install
npm install address-finder
Usage
var addressFinder = require("address-finder");
var address = addressFinder.findByPinCode('201301');
console.log(address);
Full Example
const addressFinder = require("address-finder");
const address = addressFinder.findByPinCode('201301');
console.log(address);
o/p:
{
message: 'Address for PinCode : 201301',
data: {
city: 'Noida',
district: 'Gautam Buddha Nagar',
state: 'Uttar Pradesh',
country: 'India',
pinCode: 201301
}
}