Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
gatsby-remark-related-posts-test001
Advanced tools
Calculate the similarity between posts by tf-idf and Cosine similarity.
Calculate the similarity between posts by tf-idf and Cosine similarity.
npm i --save gatsby-remark-related-posts
// In your gatsby-config.js
plugins: [
// ... other plugins
`gatsby-remark-related-posts`,
// ... other plugins
];
or
// In your gatsby-config.js
plugins: [
// ... other plugins
{
resolve: 'gatsby-remark-related-posts',
options: {
doc_lang: 'en', // optional
target_node: 'MarkdownRemark', // optional
getMarkdown: (node) => node.rawMarkdownBody, // optional
each_bow_size: 30, // optional
},
},
// ... other plugins
];
option | type | description |
---|---|---|
doc_lang | "en" | "ja" (default: "en") | ISO 639-1 language code of your post. |
target_node | "MarkdownRemark" | "Mdx" | "StrapiArticle" (default: "MarkdownRemark") | Gatsby node name to calculate similarity. |
getMarkdown | Function: (node) => string (default: (node) => node.rawMarkdownBody) | Function to get Markdown text from Gatsby node. |
each_bow_size | number (default: 30) | Adjust the size of the Bow vector. If you encounter problems during build, set it to a small value. |
// query
`
{
relatedMarkdownRemarks(parent: {id: {eq: $markdownRemarksId}}) {
posts {
frontmatter {
title
}
fields {
slug
}
}
}
}
`;
// result
{
"data": {
"relatedMarkdownRemarks": {
"posts": [
{
"frontmatter": {
"title": "English language"
},
"fields": {
"slug": "/11/"
}
},
{
"frontmatter": {
"title": "Japanese language"
},
"fields": {
"slug": "/12/"
}
},
{
"frontmatter": {
"title": "Spanish language"
},
"fields": {
"slug": "/13/"
}
},
// ...
]
}
},
}
posts
is array of MarkdownRemark
ordered by related to $markdownRemarksId
.
MIT
FAQs
Calculate the similarity between posts by tf-idf and Cosine similarity.
The npm package gatsby-remark-related-posts-test001 receives a total of 0 weekly downloads. As such, gatsby-remark-related-posts-test001 popularity was classified as not popular.
We found that gatsby-remark-related-posts-test001 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
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.