Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gatsby-remark-related-posts

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gatsby-remark-related-posts

Calculate the similarity between posts and make it avairable from graphql.

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
404
increased by23.93%
Maintainers
1
Weekly downloads
 
Created
Source

npm version

Calculate the similarity between posts and make it available from graphql.

To calculate the similarity, this plugin using tf-idf and Cosine similarity.

Installation

npm i --save gatsby-remark-related-posts

Usage

In your gatsby-config.js:

{
  resolve: "gatsby-remark-related-posts",
  options: {
    posts_dir: `${__dirname}/posts`,
    doc_lang: "ja",
  },
},
optiondescription
posts_dirdirectory that includes your markdown files.
doc_langISO 639-1 language code of your post. This supports en and ja currently.

The plugin creates a new relatedMarkdownRemarkNodes field on each MarkdownRemark node, like this:

// query
{
  allMarkdownRemark {
    nodes {
      frontmatter {
        title
      }
      fields {
        relatedMarkdownRemarks {
          frontmatter {
            title
          }
        }
      }
    }
  }
}
// result
{
  "data": {
    "allMarkdownRemark": {
      "nodes": [
        {
          "frontmatter": {
            "title": "New Beginnings"
          },
          "fields": {
            "relatedMarkdownRemarks": [
              {
                "frontmatter": {
                  "title": "Hello World"
                }
              },
              {
                "frontmatter": {
                  "title": "My Second Post!"
                }
              }
            ]
          }
        },
        ...

These MarkdownRemark nodes are sorting by similarity. In this example, first "Hello World" post is the most related to "New Beginnings" post.

see also: sample repo

Licence

MIT

Keywords

FAQs

Package last updated on 16 Dec 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc