
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
weathercompanyapi-node
Advanced tools
weathercompanyapi-node
is a chainable Node client for accessing The Weather Company API
npm install weathercompanyapi-node
const WeatherAPI = require('weathercompanyapi-node');
const apiKey = '12312314';
var weatherApi = new WeatherAPI(apiKey);
To get location information for atlanta:
weatherApi.search('atlanta', 'city', function (err, data) {
console.log('atlanta addresses', data);
);
To retrieve current conditions for Sydney, Australia:
weatherApi.location('2020', 'AU').call('observations/current', function (err, data) {
console.log('conditions', data);
});
You can change settings such as units
and language
(currently only supports JSON result format).
weatherApi.units('m').language('de-DE').location('2020', 'AU').call('observations/current', function (err, data) {
console.log('conditions', data);
});
The above example results in metric units and German.
Currently this library is compatible with the Enhanced Current Conditions
and Enhanced Forecast
APIs.
In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.
0.0.1 Initial Release
0.0.2 Fixed a packaging issue
0.0.3 Added hourly forecast
0.0.4 Verify ApiKey and throw error if missing
0.0.5 Allow using a promise on call
method
0.0.6 Fixed problem with API Version getting overwritten
0.0.7 Better handling of empty/missing parameters
Copyright (c) 2017 Dan Wilson & Skydrop, LLC. Licensed under the MIT license. See LICENSE.
FAQs
Node Client to access The Weather Company API
We found that weathercompanyapi-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.