koa-better-flash

0.0.4 • Public • Published

koa-better-flash

build status code coverage code style styled with prettier made with lass license

Flash message middleware for Koa and Passport

Table of Contents

Install

npm:

npm install koa-better-flash

yarn:

yarn add koa-better-flash

Usage

const Koa = require('koa');
const Router = require('koa-router');
const session = require('koa-generic-session');
const flash = require('koa-better-flash');
 
const app = new Koa();
const router = new Router();
 
router.post('/', (ctx, next) => {
  // you can also pass an array of messages:
  // ctx.flash('info', [ 'hi', 'hello', 'good morning' ]);
  ctx.flash('info', 'hello world');
  ctx.status = 200;
});
 
router.get('/', ctx => {
  // to get all messages by type simply call `ctx.flash()`
  ctx.body = ctx.flash('info');
  // outputs: [ 'hello world ']
});
 
app.keys = [ 'keys' ];
app.use(session());
app.use(flash());
app.use(router.routes());
app.listen();

Contributors

Name Website
Nick Baugh http://niftylettuce.com/

License

MIT © Nick Baugh

Package Sidebar

Install

npm i koa-better-flash

Weekly Downloads

96

Version

0.0.4

License

MIT

Unpacked Size

10.2 kB

Total Files

11

Last publish

Collaborators

  • niftylettuce
  • titanism