0.1.0 • Published 11 years ago

flasher v0.1.0

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

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.
});
0.1.0

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago