node-seo-toolkit
v1.0.1
Published
SEO toolkit for Node.js (Google, Facebook Open Graph, Twitter Cards)
Downloads
11
Maintainers
Readme
Node SEO Toolkit
Generate SEO meta tags for Google, Facebook, and Twitter.
Install
npm install node-seo-toolkit
Usage
const seo = require("node-seo-toolkit");
const data = seo.generateSEO({
title: "My Blog",
content: "Content here...",
url: "https://example.com",
image: "https://example.com/img.jpg"
});
console.log(data);