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

jw-weather

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jw-weather

Reader for various weather APIs

  • 1.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8
increased by166.67%
Maintainers
1
Weekly downloads
 
Created
Source

jw-weather

Module for reading weather data from various public APIs.

Currently supports:

  • DarkSky
  • AccuWeather

The goal is to create a weather module that returns a standardized weather object regardless of the API used.

Sample use in Node.js:

var jw-weather = require('jw-weather');

var boston = new jw-weather.service({
    provider: 'darksky',
    key: '0123456789abcdef9876543210fedcba', //this is a fake key
    latitude: 42.3601,
    longitude: -71.0589
});

boston.update(function(err) {
    if (err) {
        console.log('ERROR: ' + err);
    } else {
        console.log('Temp: ' + boston.temp);
    }     
});

The weather object currently includes:

  • lastUpdate (When the update was run locally)
  • forecastTime (The actual forecast time for the the provider)
  • temp
  • feelsLike
  • humidity
  • currentCondition
  • sunrise (DarkSky only)
  • sunset (DarkSky only)

When using AccuWeather there is a helper function for looking up location keys since AccuWeather does not use latitude/longitude in it's API call. Review demo.js for example use.

Keywords

FAQs

Package last updated on 05 Dec 2019

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