Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
weather-time
Advanced tools
Un paquete para obtener datos meteorológicos actuales y pronósticos de cualquier ciudad del mundo.
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.
You can install Weather Time via npm:
npm install weather-time
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);
});
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.
Contributions are welcome! Please check out the contribution guidelines before making any pull requests.
This project is licensed under the ISC License.
FAQs
Un paquete para obtener datos meteorológicos actuales y pronósticos de cualquier ciudad del mundo.
The npm package weather-time receives a total of 0 weekly downloads. As such, weather-time popularity was classified as not popular.
We found that weather-time demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
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.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.