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

flashify

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flashify

Flash notifications for Express 3 applications

  • 0.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
45
decreased by-19.64%
Maintainers
1
Weekly downloads
 
Created
Source

Flashify

Flash notifications for Express 3 applications

Installation

Firstly install the module via npm:

npm install flashify

Then require it into your application:

var flashify = require('flashify');

Then tell Express to use the middleware in your configuration function BEFORE app.router :

app.use(express.cookieParser('secret'));
app.use(express.session());
app.use(flashify);
app.use(app.router);

Usage

Flashify binds itself to your request object so you can easily set a flash notification by the following:

app.get('/secret', function(req,res){
  req.flash('Sorry, go away');
  res.redirect('/');
});

To send a flash notification in the same route with out redirecting, you can do the by using res.flash

app.get('/secret', function(req,res){
  if (req.session.isAdmin)
  {
    res.flash('info','You are an awesome admin because you use flashify');
    res.render('secret/page');
  }
  else 
  {
    req.flash('Sorry, go away');
    res.redirect('/');
  }
});

Inside your view, you can loop through and get the flash by the following (Example in Jade):

if (flash.message != undefined)
  li= flash.message

Custom Types and Multiples

You can queue up multiple flash messages with custom types using the same methods as above:

app.get('/secret', function(req,res){
  req.flash('error', 'Some silly error');
  req.flash('error', 'Some other silly error');
  req.flash('this still queues up as well!')
  req.flash('error', 'Some other other silly error');
  res.redirect('/');
});

Keywords

FAQs

Package last updated on 17 Feb 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

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