![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
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.
forecast.io-bluebird
Advanced tools
Lightweight wrapper for Forecast.IO weather API that returns Bluebird promises.
Wrapper for the http://forecast.io / Dark Sky API: https://developer.forecast.io/docs/v2
Only dependency is Bluebird!
Here's how to use it:
Require forecast.io
var Forecast = require('forecast.io-bluebird');
Instantiate an instance of the wrapper. You'll need to specify your API key. You may also supply your own timeout
value, which defaults to 2000ms or 2 seconds if not provided.
var forecast = new Forecast({
key: process.env.FORECAST_API_KEY,
timeout: 2500
});
To fetch a forecast for the current time:
forecast.fetch(latitude, longitude)
.then(function(result) {
console.dir(result);
})
.catch(function(error) {
console.error(error);
});
To fetch a forecast for a specific time:
var time = new Date().setDate(32);
forecast.fetch(latitude, longitude, time)
.then(function(result) {
console.dir(result);
})
.catch(function(error) {
console.error(error);
});
To fetch a forecast for the current time with any of the "options" specified on the documentation page:
var options = {
extend: 'hourly',
units: 'auto'
};
forecast.fetch(latitude, longitude, options)
.then(function(result) {
console.dir(result);
})
.catch(function(error) {
console.error(error);
});
To fetch a forecast for a specific time with additional "options" from the documentation page:
var time = new Date().setDate(32);
var options = {
units: 'si',
exclude: 'hourly,minitely',
lang: 'x-pig-latin'
};
forecast.fetch(latitude, longitude, time, options)
.then(function(result) {
console.dir(result);
})
.catch(function(error) {
console.error(error);
});
That's it folks! Now go build something awesome!
FAQs
Lightweight wrapper for Forecast.IO weather API that returns Bluebird promises.
We found that forecast.io-bluebird 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.