
Product
Introducing Socket Fix for Safe, Automated Dependency Upgrades
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
denmark-dawa
Advanced tools
A simple interface API for the DAWA service
npm install denmark-dawa
DAWARequest = require('denmark-dawa')
DAWA (Danmarks Adressers Web API) is a service provided by the danish government, which exposes multiply APIs for getting address related information. The API is very simple, make a GET request and get a big JSON object.
However the naïve implementation is performance wise not optimal. This module does the following:
Accept-Encoding: gzip, deflate
header for data compression.&ndjson=
to the url to get a stream friendly interface and remove pretty printing.DAWARequest
is a class constructor with the signature DAWARequest(pathname, query, settings)
:
// Gets zipcodes including special ones (stormodtagere)
const req = new DAWARequest('/postnumre', {
stormodtagere: true
});
req.on('data', function (item) {
console.log(`${item.nr}: ${item.navn}`); // 0800: Høje Taastrup
});
req.once('error', function (err) {
throw err;
});
The settings
object can be used to specify the protocol (http or https),
http is the default:
const req = new DAWARequest('/postnumre', {
stormodtagere: true
}, {
protcol: 'https'
});
Note that this module doesn't support the pagination API that DAWA provides.
However it is kinda broken anyway since you can't beyond 400000 items. And
not really nessarry since the JSON is parsed as a stream. So just add
{ per_side : 1000000 }
to the query object, to get all the requests.
If you think this is an issue, I would be happy to consider a pull request.
FAQs
A simple interface API for the DAWA service
We found that denmark-dawa demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
Product
We’re excited to announce a powerful new capability in Socket: historical data and enhanced analytics.