Giter Site home page Giter Site logo

koa-connect-flash's Introduction

koa-connect-flash

The flash is a special area of the session used for storing messages. Messages are written to the flash and cleared after being displayed to the user. The flash is typically used in combination with redirects, ensuring that the message is available to the next page that is to be rendered.

This middleware was extracted from Express 2.x, after Express 3.x removed direct support for the flash. koa-connect-flash brings this functionality to koa.

Install

$ npm install koa-connect-flash

Usage

Koa

Flash messages are stored in the session. First, setup sessions using koa-generic-session middleware. Then, use flash middleware provided by koa-connect-flash.

var koa = require('koa');
var router = require('koa-router');
var session = require('koa-generic-session');
var flash = require('koa-connect-flash');

var app = koa();

app.keys = ['keys'];
app.use(session());

app.use(flash());

app.use(router(app));

With the flash middleware in place, all requests will have a this.flash() function that can be used for flash messages.

app.get('/flash', function *(next){
  // Set a flash message by passing the key, followed by the value, to this.flash().
  this.flash('info', 'Flash is back!');
  this.redirect('/');
});

app.get('/', function *(next){
  // Get an array of flash messages by passing the key to this.flash()
  this.body = this.flash('info');
});

Examples

Tests

Credits

License

The MIT License

Copyright (c) 2012-2013 Jared Hanson <http://jaredhanson.net/>

koa-connect-flash's People

Contributors

jaredhanson avatar peterwooley avatar theverything avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

blender222

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.