select-philippines-address

Select addresses in the Philippines.


Keywords
github, select, philippines, address, regions, cities, html, javascript, node, npm, package, ph, provinces, react, vue
License
MIT
Install
npm install select-philippines-address@1.0.6

Documentation

select-philippines-address@1.0.6

Select addresses in the Philippines using HTML select base on address codes

js-standard-style npm version codecov

- ✨ Demo Deployed at Vercel

React JS

Deploy with Vercel

Vue JS

Deploy with Vercel

- ✨ Installation

npm i select-philippines-address --save

- ✨ Usage
import {
    regions,
    provinces,
    cities,
    barangays,
} from "select-philippines-address";

regions().then((region) => console.log(region));
regionByCode("01").then((region) => console.log(region.region_name));
provinces("01").then((province) => console.log(province));
provincesByCode("01").then((province) => console.log(province));
provinceByName("Rizal").then((province) => console.log(province.province_code));
cities("0128").then((city) => console.log(city));
barangays("052011").then((barangays) => console.log(barangays));
  • regions() - has no parameter which returns all regions.
  • regionByCode() - has 1 parameter region_code which returns a region.
  • provinces() - has 1 parameter region_code which returns provinces in that region.
  • provincesByCode() - has 1 parameter region_code which returns provinces in that region.
  • provinceByName() - has 1 parameter province_name which returns province.
  • cities() - has 1 parameter province_code which returns cities in that province.
  • barangays() - has 1 parameter city_code which returns barangays in that city.
- ✨ Screenshot
React JS Vue JS
App App

🚀 NPM Link

https://www.npmjs.com/package/select-philippines-address

👨‍💻 Source Code.

Please fork or star for support.

🔗 API.

Philippines Addresses API

🔖 License

Apache-2.0

🚀 Developers

Isaac Arcilla