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

weather-time

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

weather-time

Un paquete para obtener datos meteorológicos actuales y pronósticos de cualquier ciudad del mundo.

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
2
Weekly downloads
 
Created
Source

Welcome to Weather Time 🌤️

Weather Time is an easy-to-use package for obtaining current weather data, weather forecasts and time zones for any city in the world using the WeatherAPI.

⚙ Installation

You can install Weather Time via npm:

npm install weather-time

📝 Usage

To use Weather Time in your project, require it and call its functions with the desired location.

const weather = require('weather-time');

// Get current weather data for Paris
weather.getWeather('Paris')
  .then(data => {
    console.log('Weather data for Paris:', data);
  })
  .catch(error => {
    console.error('Error fetching weather data:', error);
  });

// Get weather forecast for London
weather.getForecast('London')
  .then(data => {
    console.log('Weather forecast for London:', data);
  })
  .catch(error => {
    console.error('Error fetching weather forecast:', error);
  });

// Get timezone for New York
weather.getTimezone('New York')
  .then(data => {
    console.log('Timezone for New York:', data);
  })
  .catch(error => {
    console.error('Error fetching timezone:', error);
  });

// Get available keys for querying weather data
weather.getQuerysValues('Sydney')
  .then(keys => {
    console.log('Available keys for Sydney:', keys);
  })
  .catch(error => {
    console.error('Error fetching available keys:', error);
  });

📕 API Reference

getWeather(location, queries = [])

Fetches current weather data for a specified location. Optionally, you can provide an array of specific data queries.

getForecast(location)

Fetches weather forecast data for a specified location.

getTimezone(location)

Fetches timezone data for a specified location.

getQuerysValues(location)

Fetches available keys for querying weather data for a specified location.

📦 Contributing

Contributions are welcome! Please check out the contribution guidelines before making any pull requests.

📜 License

This project is licensed under the ISC License.

Keywords

FAQs

Package last updated on 01 May 2024

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