Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

npm-openweathermap

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

npm-openweathermap

> Generate a weather forecast using http://www.openweathermap.com/ API.

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

npm-openweathermap NPM version Build Status Dependency Status

Generate a weather forecast using http://www.openweathermap.com/ API.

Installation

$ npm install --save npm-openweathermap

Usage

var weather = require('npm-openweathermap');

// api_key is required. You can get one at http://www.openweathermap.com/
weather.api_key = 'YOUR-API-KEY';

// OPTIONAL: you can set return temperature unit.
// 'k' for Kelvin
// 'c' for Celsius
// 'f' for Fahrenheit
weather.temp = 'c';
Basic usage
weather.current_weather()
.then(function(result){
	console.log(result);
},function(error){
	console.log(error);
});

weather.forecast_weather()
.then(function(result){
	console.log(result);
},function(error){
	console.log(error);
})
Custom weather queries

This package allows custom queries to Openweathermap throw get_weather_custom function.

// @function get_weather_custom(param_type, params, type)
// @params:
//		param_type: 
//			One of three values:
//				'city': query by city name
//				'zip': query by zipcode
//				'coordinates': query by coordinates
//		params:
//			City name or zipcode or coordinates object
//		type:
//			One of two values:
//				'weather': query for current weather
//				'forecast': query for forecast

weather.get_weather_custom('city', 'London', 'forecast').then(function(res){
	console.log(res);
},function(error){
	console.log(error)
})

weather.get_weather_custom('zip', '21804', 'weather').then(function(res){
	console.log(res);
},function(error){
	console.log(error)
})

var location = {
	longitude: '138.933334',
	latitude: '34.966671',
}
weather.get_weather_custom('coordinates', location, 'weather').then(function(res){
	console.log(res);
},function(error){
	console.log(error)
})

License

MIT © NghiaTran

Keywords

FAQs

Package last updated on 31 Jan 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc