Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
cdyne-address
Advanced tools
module that allows you to communicate with the CDYNE PAV API from node.js
##Installation This module is published in NPM
npm install cdyne-address --save
##Usage
// Import module
var CdyneAddressAPI = require('cdyne-address');
// Create an instance with your license key
var client = new CdyneAddressAPI('license_key');
##Methods ###verifyAddress
verifyAddress(primaryLine, secondaryLine, city, state, zip, options, callback)
client.verifyAddress('111 Grandby St', '', 'Norfolk', 'VA', '23510', {
ReturnGeoLocation: true
}, function(error, data) {
console.log(error, data);
});
Example Response (some fields omitted for brevity)
{
CityName: 'NORFOLK',
Country: 'USA',
County: 'NORFOLK CITY',
CountyNum: '710',
FinanceNumber: '516522',
GeoLocationInfo:
{ AreaCode: '757',
AvgLatitude: '36.846818',
AvgLongitude: '-76.292110',
FromLatitude: '36.846344',
FromLongitude: '-76.292363',
HasDaylightSavings: true,
TimeZone: 'EST',
ToLatitude: '36.847292',
ToLongitude: '-76.291857' },
IntelligentMailBarcodeKey: '+Md+yEHLZoK1AHH/kdcL0g==',
PrimaryDeliveryLine: '111 GRANBY ST',
ReturnCode: 100,
StateAbbreviation: 'VA',
StreetName: 'GRANBY',
Suffix: 'ST',
ZipCode: '23510-1603'
}
FAQs
CDYNE Postal Address Verification API node.js wrapper
The npm package cdyne-address receives a total of 1 weekly downloads. As such, cdyne-address popularity was classified as not popular.
We found that cdyne-address demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.