🚀 Launch Week Day 5:Introducing Immutable Scans.Learn More →
Socket
Book a DemoInstallSign in
Socket

flasher

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

flasher

Configurable flash messages for Express 3

Source
npmnpm
Version
0.0.2
Version published
Weekly downloads
11
120%
Maintainers
1
Weekly downloads
 
Created
Source

flasher

Configurable flash messages for Express 3. Based on flashify by @bscarvell but with a different interface and some configuration options.

npm install flashify

Setup

After setting up your express sessions, just register the flasher middleware.

var express = require('express');

var flasher = require('flasher'); // Get flasher

var app = express();

// Setup express sessions.
app.use(express.cookieParser('topsecret'));
app.use(express.session());

app.use(flasher.middleware); // Register the middleware

Usage

In your routes you can then just go:

req.flash.error("This is an error."); // An error message
req.flash.error("This is another error"); // and another
req.flash.info("This is an info message."); // An info message, not an error

The above flash messages would be made available to your templates via res.locals like so:

flashes : {
	error : ['This is an error', 'This is another error'],
	info : ['This is an info message']
}

When using the req methods your messages will be show in the following response cycle. If you would like to show the error messages directly you can use the same methods on the response object instead. For example:

res.flash.error("This is an error for this response cycle.");

Configuration (Optional)

You can set up as many different type of flash messages as you'd like. Optionally you can also specify the namespace in which you would like to have save your flash messages (this applies to both the template and the session cookie)

flasher.init({
	namespace : 'flashMessages', // The namespace where you want to have the flash messages (in your templates and the session cookie)
	types : ['error', 'info'] // The types of messages you'd like.
});

Keywords

flash messages, express, alerts

FAQs

Package last updated on 27 May 2013

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