New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

openweathermapapi

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openweathermapapi

A promise based wrapper for the Open Weather Map Api

  • 1.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-73.33%
Maintainers
1
Weekly downloads
 
Created
Source

OWM Api Module for Nodejs

install

You can install this Nodejs module trough npm by using this command add a --save behind if you want add this module to your dependencies in your package.json

npm i openweathermapapi

usage

this module is Promise based and you can find the result object in the example folder of this repo

example usage:

const WeatherApi  = require('openweathermapapi')

const City = "Your City here"
const ApiKey = "Your Api Key Here"

WeatherApi.byName(City, ApiKey)
    .then(result => {
            console.log(result.weather.advanced)
        }
    )
    .catch(console.error)

Keywords

FAQs

Package last updated on 24 May 2017

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