šŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →
Socket
Sign inDemoInstall
Socket

one-flash

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

one-flash

A flash implementation for Express that goes away after the first navigation.

0.3.1
latest
Source
npm
Version published
Weekly downloads
19
111.11%
Maintainers
1
Weekly downloads
Ā 
Created
Source

one-flash

NPM version Dependency Status Gittip

A flash implementation for Express that goes away after the first navigation.

Usage

npm install one-flash --save

Backend

add it as middleware AFTER session() in your app.js

app.use(session());
app.use(require('one-flash'));

In routes (or any handler)

router.get('/flash', function(req, res) {
    req.oneFlash('warning', 'hello redirect');
    res.redirect('/');
});

router.get('/flashrender', function(req, res) {
    req.oneFlash('hello render'); // notice how type is not required. It will default to 'info'.
    res.render('index', {
        title: 'Index - TEST'
    });
});

Frontend

(Nunjucks + bootstrap.js 3.x)

  {% for message in flash %}
  <div class="alert alert-{{ message.type }} alert-dismissible" role="alert">
    <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>
    {{ message.message }}
  </div>
  {% endfor %}

API

oneFlash adds a property to locals called "flash", its value is an array of "flash" objects.

res.locals.flash = [
  {
    type: 'info',
    message: 'hello flash',
  }
];

Tests

The entire middleware is very small, and im not sure how to do automated test redirects without a complex Selenium setup. You should know in about two seconds if it doesnt work. Just copy/paste the router samples above and test it.

Keywords

expressjs

FAQs

Package last updated on 22 Feb 2016

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