zip-codes-lookup
v1.1.0
Published
A Node.js script to check address details using zip
Downloads
9
Readme
zip-codes-lookup
A Node.js script to programmatically get details
Installation
To install the script globally you can use NPM:
npm install --global zip-codes-lookup
If you have the script already installed in your system, this command will update it to the latest available version.
After executing this command the script zip-codes-lookup
will be globally available
in your system. Give it a try with:
zip-codes-lookup -V
Programmatic usage
If you want to use the features of this module in a Node.js project:
const zip = require("zip-codes-lookup");
zip.getRecords(zip).then((data)=>{
console.log("Zip data",data)
});