Generate HTML meta tags from JSON data.
npm install html-meta-tags[url]: https://rinaldi.io
> Generate HTML meta tags from JSON data.
``sh`
npm install html-meta-tags -g
#### CLI
You can either pipe data from the standard input or specify a file path for the program.
`sh
$ html-meta-tags
Usage: html-meta-tags
Example:
cat data.json | html-meta-tags
Options:
-v --version Display current program version
-h --help Display help and usage details
--no-charset Do not specify UTF-8 as document charset
--no-og Do not generate Open Graph meta tags
--no-twitter Do not generate Twitter meta tags
$ echo '
{
"title": "My Website",
"url": "https://mywebsite.com",
"keywords": ["blockchain", "infosec", "crypto"],
"description": "This is my personal website"
}' | html-meta-tags
`
#### Node.js
`js
var htmlMetaTags = require('html-meta-tags')
var data = require('./data.json')
console.log(htmlMetaTags(data))
`
Returns an HTML string containing a representation of all meta tags from data.
#### data
Type: Object
Meta tags in object notation format.
* You can use arrays for comma-separated such as keywords or viewport.og:title
* If a specific value for a prefixed key is specified it will take precedence over the default.
* Prefixed keys should have their own entry, for example, should be represented as:`js`
{
og: {
title: 'value'
}
}
#### options
Type: Object
##### shouldIgnoreCharset
Type: boolean false
Default:
Whether or not it should render UTF-8 charset meta tag.
##### shouldIgnoreTwitter
Type: boolean false
Default:
Whether or not it should render Twitter specific meta tags.
##### shouldIgnoreOpenGraph
Type: boolean false`
Default:
Whether or not it should render Open Graph specific meta tags.
MIT © [Rafael Rinaldi][url]
---