related-pages
v1.0.4
Published

Downloads
12
Readme
Related Pages

Getting Started
Installation
yarn add related-pagesor
npm install --save related-pagesUsage
import { relatedPagesByTags } from "related-pages";
// or if you're in nodejs environment
const { relatedPagesByTags } = require("related-pages");
const pages = [
{
slug: "writing-an-article",
tags: ["write", "article", "document"]
},
{
slug: "how-to-write-unit-test",
tags: ["unit-test", "jest", "mocha", "tutorial"]
},
{
slug: "writing-article-about-jest",
tags: ["write", "jest"]
}
];
const tags = ["mocha", "tutorial"];
const result = relatedPagesByTags(pages, tags);
console.log(result[0]);
// {
// slug: "how-to-write-unit-test",
// tags: ["unit-test", "jest", "mocha", "tutorial"]
// };The only required property is tags containing list of strings (string[]). Check the source code in index.ts to see the typings
Test
yarn testAuthor
Muhammad Muhajir @muhajirdev
License
MIT License
