
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@letterdropcom/gatsby-source-letterdrop
Advanced tools
Gatsby source plugin for building websites using Letterdrop as a data source
Source plugin for sourcing data from Letterdrop Posts data.
npm i @letterdropcom/gatsby-source-letterdrop
The plugin requires your publication api-key from Letterdrop. Check here to know how to generate and use an API key.
Once you got your api-key use the following configuration in your Gatsby Site.
# In your gatsby-config.js
plugins: [
{
resolve: "@letterdropcom/gatsby-source-letterdrop",
options: {
apikey: "<your-api-key>",
version: "v1" # default version
}
}
]
Upon querying the plugin, it return a single / list of Post nodes. Check the response for the full set of fields made available from Letterdrop Get Post API
Example post query
{
allLetterdropPosts {
nodes {
url
title
...
coverImage {
url
extension
...
}
publication {
customDomain {
domain
...
}
_id
domain
}
postAuthor {
_id
name
}
}
}
}
Example post query with filter
Assume you need to query post url adapt-your-writing
from allLetterdropPosts, specify the filter like below
{
allLetterdropPosts(filter: {url: {eq: "adapt-your-writing"}}) {
nodes {
url
title
...
coverImage {
url
extension
...
}
publication {
customDomain {
domain
...
}
_id
domain
}
postAuthor {
_id
name
}
}
}
}
Copyright © 2021 Letterdrop
FAQs
Gatsby source plugin for building websites using Letterdrop as a data source
The npm package @letterdropcom/gatsby-source-letterdrop receives a total of 0 weekly downloads. As such, @letterdropcom/gatsby-source-letterdrop popularity was classified as not popular.
We found that @letterdropcom/gatsby-source-letterdrop demonstrated a not healthy version release cadence and project activity because the last version was released 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
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.