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

express-titles

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-titles

A simple express middleware to manage website title with prefix and suffix control.

  • 1.0.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
Maintainers
1
Weekly downloads
 
Created
Source

express-titles

A simple express middleware to manage website title with prefix and suffix control.

Installation

$ npm install express-titles

Usage

Basic example:

//-- app.js
var express = require('express'), app = express();
var title   = require('express-titles')(app);

//-- layout configuration...

app.get('/', title('Homepage'), function (req, res) {
  res.render('index');
})
//-- index.jade
doctype html
html
  head
    title!= title
  body
    //-- ...

Global prefix/suffix:

All you really need to do is to set it in the app:

//-- app.js

//-- ...
app.set('prefix', 'wvffle.net');
app.set('suffix', '<3');
//-- ...

You may want to change the separator so:

//-- app.js

//-- ...
app.set('ps', ' | ');
//-- ...

Middleware options

You can set options through the middleware.

  • prefix - Prefix of the page (true || false || String)
  • suffix - Suffix of the page (true || false || String)
  • ps - Separator (String)

Example:

//-- app.js

//-- ...
app.set('prefix', 'wvffle.net');
app.set('suffix', '<3');

app.get('/', title('Homepage', { suffix: false, prefix: 'Dope', ps: ' '}), function (req, res) {
//-- Dope Homepage
  res.render('index');
})

License

MIT

Keywords

FAQs

Package last updated on 23 Oct 2015

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