
Security News
Open Source Maintainers Feeling the Weight of the EU’s Cyber Resilience Act
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
openweathermap-js
Advanced tools
Node.js module to simplify usage of openweathermap weather APIs with node.js apps.
Node.js module to simplify use of Openweathermap weather APIs in node.js projects.
To use it, simply use the require function in your node.js app.
const weather = require('openweathermap-js');
The first release of this module only includes a function to get the current weather. A new function telling 3 hour forecast is now included. You can also use the daily
function to get a daily forecast. You can define defaults settings, and overwrite them at the time of calling the function :
weather.defaults({
appid: '',
location: 'London',
cityID: 1851632, // Shuzenji, JP
method: 'name',
format: 'JSON',
accuracy: 'accurate',
units: 'imperial'
});
weather.current(function(err, data) {
if (!err)
console.log(data);
else
console.error(err.message);
});
weather.forecast({method: 'cityID', lang: 'fr', units: 'metric'}, function(err, data) {
if (!err)
console.log(data);
else
console.error(err.message);
});
weather.daily({method: 'coord', coord: {lat: -33.9, lon: 151.2, cnt: 3}}, function(err, data) {
if (!err)
console.log(data);
else
console.error(err.message);
});
For more info, see our wiki.
FAQs
Node.js module to simplify usage of openweathermap weather APIs with node.js apps.
The npm package openweathermap-js receives a total of 6 weekly downloads. As such, openweathermap-js popularity was classified as not popular.
We found that openweathermap-js 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
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.