weather-data-collector

1.0.0 • Public • Published

Weather Data Collector

A package to collect weather data for a specific location using the weather-information-api.

Installation

You can install the package via npm:

npm install weather-data-collector

Usage

First, import the WeatherCollector class from the package:

const WeatherCollector = require('weather-data-collector');

Then, create an instance of WeatherCollector with your OpenWeatherMap API key:

const apiKey = 'YOUR_API_KEY';
const collector = new WeatherCollector(apiKey);

You can fetch weather data for a location using the getWeatherForLocation method:

const city = 'London';
try {
  const weatherData = await collector.getWeatherForLocation(city);
  console.log('Weather in London:', weatherData);
} catch (error) {
  console.error(error.message);
}

Replace 'YOUR_API_KEY' with your actual OpenWeatherMap API key.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i weather-data-collector

    Weekly Downloads

    1

    Version

    1.0.0

    License

    MIT

    Unpacked Size

    1.94 kB

    Total Files

    3

    Last publish

    Collaborators

    • beniukbohdan