
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
gatsby-plugin-jam-comments
Advanced tools
:warning: JamComments is still in active development, and has not yet been opened to the public. To be notified when it's available, sign up here: jamcomments.com.
The official Gatsby plugin for integrating JamComments into your Gatsby application.
npm install gatsby-plugin-jam-comments
.gatsby-node.js
:resolve: 'gatsby-plugin-jam-comments',
options: {
api_key: "YOUR-API-KEY",
domain: "your-domain.me"
}
},
To include a comment form and existing comments on your blog posts, you'll need to place the <JamComments />
component on your page component(s), along with the required path
and pageContext
props:
import React from "react";
import JamComments from "gatsby-plugin-jam-comments";
const MyPost = (props) => {
return (
<article>
<h1>{props.title}</h1>
<div>{props.content}</div>
<JamComments path={props.path} pageContext={props.pageContext} />
</article>
);
};
export default MyPost;
{
allJamComment(limit: 10) {
edges {
node {
content
name
path
id
}
}
}
}
FAQs
The Gatsby plugin for Jam Comments.
We found that gatsby-plugin-jam-comments 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.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.