Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
node-postcode
Advanced tools
API wrapper for the Postcode.nl API.
Features:
var Postcode = require("node-postcode").Postcode;
var client = new Postcode({
key: /* your API key */,
secret: /* your API secret */
});
client.address("1111AA", 1)
.then(function (addressDetails) {
/* addressDetails contains information about the address (if valid) */
});
$ npm i node-postcode
You can retrieve your own API credentials over here (only available in Dutch at time of writing).
The client exposing the address
and signal
functions
options
)Arguments
options
- An object containing key
and secret
(required)Example
new PostcodeClient({
key: "YOUR_KEY",
secret: "YOUR_SECRET"
});
Returns
An instance of the PostcodeClient
class
postcode
, number
[, numberAddition
])Arguments
postcode
- required
A postcode in the format 1111AA
(4 digits, 2 letters). Can not start with a 0. Letters do not have to be in uppercase as these will be forced to uppercase when making the API call. 1111 AA
is also accepted, as spaces in the string are removednumber
- required
An integer in the range of 0 - 99999numberAddition
- An addition to the number
. Can indicate which apartment, room, officeExample
client.address("1111AA", 1)
.then(function (addressDetails) {
/*
addressDetails = { street: 'Diemerkade',
houseNumber: 1,
houseNumberAddition: '',
postcode: '1111AA',
city: 'Diemen',
municipality: 'Diemen',
province: 'Noord-Holland',
rdX: 125497,
rdY: 483727,
latitude: 52.34067657,
longitude: 4.95429501,
bagNumberDesignationId: '0384200000016667',
bagAddressableObjectId: '0384010000016511',
addressType: 'building',
purposes: [ 'residency' ],
surfaceArea: 64,
houseNumberAdditions: [ '' ] }
*/
})
.catch(function (err) {
/* Err will contain the error returned by either the API or the HTTP request */
});
Returns
Returns a Promise
. When successful, .then(function (addressDetails) {})
is returned. The format and explanation of the returned data can be found at the official documentation of the API. When an error occurs, .catch(function (err) {})
contains the error given. When err.code == "PostcodeNl_Service_PostcodeAddress_AddressNotFoundException"
, the postcode
and number
supplied do not resolve to an address.
When numberAddition
is supplied, but houseNumberAddition
is an empty string, the numberAddition
can not be verified, but this does not mean that mail sent to this address will not be accepted.
FAQs
API wrapper for the Postcode.nl APIs
The npm package node-postcode receives a total of 13 weekly downloads. As such, node-postcode popularity was classified as not popular.
We found that node-postcode 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.