🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

express-metatag

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-metatag

ExpressJS meta tags injection middleware

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

express-metatag

ExpressJS metatag injection middleware

Middleware that injects metatags into your document

##Installation

npm install --save express-metatag

#Usage

var Meta = require('express-metatag');
var middleware =  Meta(name, ignorePrefix)({
	tag: 'a'
});
app.use(middleware);
/*
	You can also use with an array
	 middleware =  Meta(name, ignorePrefix)([{
		tag: 'a'
	}, {
		othertag: 'b'
	}]);

	or with a function
	
	middleware = Meta(name, ignorePrefix)(function(req, res, next){
		return {
			tag: req.params.myparam
		}
	});
*/

##Examples

###Inject Facebook opengraph tags:

var OG = require('express-metatag')('og')
app.use(OG([{
	title: 'Hello World',
	description: 'Amazing module'
}]));

Result:

<head>
	...
	<meta property="og:title" content="Hello World">
	<meta property="og:decription" content="Amazing module">
</head>

###Inject other tags:

var ML = require('express-metatag')('tags', true)
app.use(ML([{
	'twitter:title': 'Hello World',
	'twitter:description': 'Amazing module'
}, {
	'og:title': 'Hello World',
	'og:description' : 'Amazing module'
}]));

Result:

<head>
	<meta property="twitter:title" content="Hello World">
	<meta property="twitter:description" content="Amazing module">
	<meta property="og:title" content="Hello World">
	<meta property="og:description" content="Amazing module">
</head>

Keywords

expressjs

FAQs

Package last updated on 03 Jul 2014

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