
Security News
New React Server Components Vulnerabilities: DoS and Source Code Exposure
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.
gatsby-source-dropinblog
Advanced tools
A ridiculously simple source plugin for the DropInBlog CMS.

yarn add gatsby-source-dropinblog
In your gatsby-config.js file all you need to do is add the plugin with the id option set to your account's id.
{
plugins: [
{
resolve: "gatsby-source-dropinblog",
options: {
id: "<YOUR_UNIQUE_ID>",
}
},
],
},
If you don't know your id log into your account at DropInBlog, go to the Code & Layout page, and grab the id from the first snippet.

The benefits of using this plugin over just using our JSON api with gatsby-source-custom-api is that we need to fetch data from three endpoints; our posts, authors, and categories.
Even when you get those endpoint there's a strange scope problem, gatsby-source-custom-api can return all of that data properly but it's all inside of an array called data. Since the data is put inside of a single node with an array of data you're able to access everything fine but are unable to use any of the goodies of Gatsby like filter.
gatsby-source-dropinblog solves this by doing the grunt work of handling all three requests for you and generating the nodes in the proper scope so you can use Gatsby to its full potential.
❤️ If this plugin is helpful for you, consider giving it a star it on GitHub.
FAQs
A source plugin for the DropInBlog CMS
The npm package gatsby-source-dropinblog receives a total of 6 weekly downloads. As such, gatsby-source-dropinblog popularity was classified as not popular.
We found that gatsby-source-dropinblog 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
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.