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

mini-owm

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mini-owm

Mini ES wrapper for OpenWeatherMap api

  • 1.0.1
  • Source
  • npm
  • Socket score

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

mini-owm

Mini-OpenWeatherMap is a light-weight wrapper around Open Weather Map's One Call Api.

MiniOwm is simple but versatile. Use it in any of the following ways or mix and match.

Constructor parameters

const OwmApi = import('mini-owm');

// constructor parameters are all optional
const api = new OwmAPi(
  '<your api key here>', // owm api key
  33.441792, // latitude
  -94.037689, // longitude
  'hourly,minutely' // exclude
);

api.get().then(res => {
  console.log(res);
});

Chaining

const OwmApi = import('mini-owm');
const api = new OwmAPi();
api
  .apiKey('<your api key here>')
  .latitude(33.441792)
  .longitude(-94.037689)
  .exclude('hourly,minutely')
  .get()
  .then(res => {
    console.log(res);
  });

Get Parameters

const OwmApi = import('mini-owm');
new OwmAPi()
  .get({
    apiKey: '<your api key here>',
    coords: {
      latitude: 33.441792,
      longitude: -94.037689,
    },
    exclude: 'hourly,minutely'
  })
  .then(res => {
    console.log(res);
  });

Development

  • Note: MiniOwm is written in TypeScript
  • Setup: pnpm install
  • Configure: create .env with contents: API_KEY=<your api key here>
  • Serve: pnpm run start

See index.ejs.

Runtimes

Latest tested runtimes

  • node: 10.16.3
  • pnpm: 2.15.1

Keywords

FAQs

Package last updated on 27 May 2020

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