Socket
Socket
Sign inDemoInstall

weather-today

Package Overview
Dependencies
4
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    weather-today

Yahoo weather API wrapper for node js


Version published
Weekly downloads
2
Maintainers
1
Install size
857 kB
Created
Weekly downloads
 

Readme

Source

Overview

Get the weather related different details for city

Prerequisites

Get the yahoo application id for your app use following link to generate yahoo id :

yahoo

Example


 var weatherToday = require('weather-today');

 //give yahoo app id as 'appid'
 weatherToday.weather({
        location: 'mumbai',
        appid: appid
      })
      .then(function(d) {
        //d-->> weather info for city
      })
      .catch(function(e) {
         console.log(e);
      });

Example JSON result:

{ text: 'Smoke',
  code: '22',
  temp: '28', //current temp
  date: 'Thu, 18 Feb 2016 5:30 pm IST',
  high: '31',
  low: '23',
  forecast:
   [ { day: 'Thu',
       date: '18 Feb 2016',
       low: '23',
       high: '31',
       text: 'Mostly Clear',
       code: '33' },
     { day: 'Fri',
       date: '19 Feb 2016',
       low: '23',
       high: '30',
       text: 'Mostly Sunny',
       code: '34' },
     { day: 'Sat',
       date: '20 Feb 2016',
       low: '24',
       high: '31',
       text: 'Mostly Sunny',
       code: '34' },
     { day: 'Sun',
       date: '21 Feb 2016',
       low: '23',
       high: '33',
       text: 'Partly Cloudy',
       code: '30' },
     { day: 'Mon',
       date: '22 Feb 2016',
       low: '23',
       high: '33',
       text: 'Sunny',
       code: '32' } ] }

Other apis can be called similarly for the given city

  • weatherToday.astronomy(options) //get astronomy
  • weatherToday.forecast(options) //get next 5 days forecast only
  • weatherToday.geopoints(options) //get geopoints[latitude,longitude]
  • weatherToday.atmosphere(options) //get atmosphere details
  • weatherToday.wind(options) //get wind deatils
  • weatherToday.location(options) //get location deatils

FAQs

Last updated on 19 Feb 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc