Socket
Socket
Sign inDemoInstall

openweathermap-apis

Package Overview
Dependencies
3
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    openweathermap-apis

An abstraction layer for the openweathermap.org APIs


Version published
Weekly downloads
6
decreased by-50%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

openweathermap-nodejs

GitHub issues GitHub license GitHub release David David Maintainability Test Coverage Known Vulnerabilities

An abstraction layer for the (openweathermap.org) APIs.

Currently only the current weather, 5day forecast, 16day forecast, and UV Index apis have been added

install

npm install openweathermap-apis

usage

To use this package you can either import an individual api or import all of the apis into your application. For an individual module you can use:

import Weather from 'OpenWeatherMap/api';

or

const { Weather } = require('openweathermap-api);

If you want to import all of the modules just use:

const OWM = require('openweathermap-api');

Once imported you need to create a client instance where wou would provide an api key for it to use:

const { Weather } = require('openweathermap-api');

const client = new Weather({
  apiKey: '{yourAPPIDFromopenweathermap.org}'
});

The available APIs are listed in the API Docs Page as all of the static members of the module. If however you have imported all of the apis into a single object then you will have full access to all methods as if you had imported only a single one.

api documentation

The documentation can be found on the API Docs Page

Keywords

FAQs

Last updated on 22 Feb 2018

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