1.0.6 • Published 2 years ago

address-finder v1.0.6

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

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
  }
}
1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.0.1

3 years ago