
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
react-weather-forecast
Advanced tools
Library of react components used for weather forecast from openweather api. Can be used with both pro and free accounts.
Collection of react components used to display weather at any location.
// Set up global configuration for weather components
<WeatherGlobal
apiKey={state.setApiKey}
by="day"
from={new Date()}
to={threeDaysLater}
loadingHandler={() => <div>Loading...</div>}
errorHandler={() => <div>Error!</div>}
storage={localStorage}
dateHandler={date => <span>{date.toLocaleDateString() + " " + date.toLocaleTimeString()}</span>}
units="metric"
lang="cz"
>
{/* List how much it rains in Prague */}
{<WeatherList kind="names" names={["Prague"]} type="rain" />}
{/* List what kind of weather is in Prague */}
{<WeatherConditions kind="geo" lat={50.073658} lon={14.418540} list />}
{/* List only cloudy types of weather */}
{<WeatherConditions kind="geo" lat={50.073658} lon={14.418540} type="Clouds" />}
{/* List temperature in Prague */}
{<WeatherGraph kind="ids" ids={[3067696]} type="clouds" label="Temperature" />}
{/* List temperature with custom extended component */}
{<ExtendedTemperatureInfo label="Temp" />}
{/* List weather phenomena with custom extended component */}
{<ExtendedWeatherInfo label="Weather list" />}
</WeatherGlobal>
export interface ExtendedTemperatureProps extends InfoQueryEnhancerProps {
label: string;
}
const ExtendedTemperature: FunctionComponent<ExtendedTemperatureProps> = props => (
<div>
<h3>
{props.label}
</h3>
<ul>
{props.data.map(result => <li>{result.value}</li>)}
</ul>
</div>
);
export default weatherEnhancer(ExtendedTemperature, {
kind: 'names',
names: ['Prague', 'cz'],
type: 'temp_max',
});
For non-react use refer to package https://www.npmjs.com/package/forecast-query
If you have any ideas or have discovered any bugs, please report them, I will take a look as soon as possible.
FAQs
Library of react components used for weather forecast from openweather api. Can be used with both pro and free accounts.
We found that react-weather-forecast 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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.