
Security News
MCP Steering Committee Launches Official MCP Registry in Preview
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
@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
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 MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.