
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
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.
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 Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.