You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

openweathermap-js

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openweathermap-js

Node.js module to simplify usage of openweathermap weather APIs with node.js apps.

1.0.1
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

openweathermap-js

Node.js module to simplify use of Openweathermap weather APIs in node.js projects.

How it works

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.

Keywords

weather

FAQs

Package last updated on 20 Jul 2016

Did you know?

Socket

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.

Install

Related posts