1.5.0 • Published 4 years ago

@discordia/action-openweather-current v1.5.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

Note: Some of the links in this README file work better on the documentation site

What does this action do?

@discordia/action-current-weather uses the Open Weather API current weather endpoint to get the current weather in a location that the server member specifies. You must provide your own API key when creating an instance of this action.

The request comes in the form @BotName weather {city name} {state} {country code} where {state} and {country code} are each optional.

Installation

# install the module using npm
npm install @discordia/action-openweather-current

# install the module using yarn
yarn add @discordia/action-openweather-current

Usage

Add the query to the existing array of queries that your bot can respond to.

const DiscordiaFramework = require('@discordia/framework');
const actionOpenWeatherCurrent = require('@discordia/action-openweather-current');

const actions = [
  // Other actions can go here...
  actionOpenWeatherCurrent('OpenWeather API Key'),
];

const myBot = new DiscordiaFramework('DISCORD TOKEN', actions);

myBot.start();