Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
gatsby-source-darksky
Advanced tools
A Gatsby source plugin to load resources from the Dark Sky API.
This source plugin for Gatsby will make weather information from Dark Sky available in GraphQL queries.
# Install the plugin
yarn add gatsby-source-darksky
In gatsby-config.js
:
module.exports = {
plugins: [
{
resolve: 'gatsby-source-darksky',
options: {
key: 'YOUR_DARK_SKY_API_KEY',
latitude: 'YOUR_LATITUDE',
longitude: 'YOUR_LONGITUDE',
exclude: ['DATA_BLOCKS_TO_EXCLUDE']
},
}
]
};
NOTE: To get a Dark Sky API key, register for a Dark Sky dev account. You can find your API key in the “Your Secret Key” section of the Dark Sky dev console.
The configuration options for this plugin mirror the forecast request parameters. Please review those docs for more details. This plugin works well with gatsby-source-googlemaps-geocoding. If using these two plugins together, make sure that the gatsby-source-darksky
entry appears first in the config. If so, and you omit latitude
and longitude
from this config, the weather information will be fetched for the location provided in the gatsby-source-googlemaps-geocoding
config.
Option | Default | Description |
---|---|---|
key | [required] Your Dark Sky API key | |
latitude | The latitude of a location (in decimal degrees). Positive is north, negative is south. (optional if used with gatsby-source-googlemaps-geocoding ) | |
longitude | The longitude of a location (in decimal degrees). Positive is east, negative is west. (optional if used with gatsby-source-googlemaps-geocoding ) | |
exclude | Exclude some number of data blocks from the API response. This is useful for reducing latency and saving cache space. The value blocks should be a comma-delimeted list (without spaces) of any of the following: "currently", "minutely", "hourly", "daily", "alerts", "flags" |
module.exports = {
plugins: [
{
resolve: 'gatsby-source-darksky',
options: {
key: process.env.DARK_SKY_API_KEY,
latitude: `42.3411789`,
longitude: `-71.7315589`,
exclude: [`minutely`, `hourly`, `flags`]
}
}
]
};
Once the plugin is configured, one new query is available in GraphQL: allWeatherData
.
Here’s an example query to load the current weather conditions along with the forecast for the next week:
query WeatherQuery {
allWeatherData {
edges {
node {
currently {
time
summary
temperature
windSpeed
windBearing
}
daily {
data {
time
summary
temperatureMin
temperatureMax
windSpeed
windBearing
}
}
}
}
}
}
See the Dark Sky API docs or the GraphiQL UI for info on all returned fields.
FAQs
A Gatsby source plugin to load resources from the Dark Sky API.
The npm package gatsby-source-darksky receives a total of 0 weekly downloads. As such, gatsby-source-darksky popularity was classified as not popular.
We found that gatsby-source-darksky 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.