jaredhanson / connect-flash

Flash message middleware for Connect and Express.
MIT License
1.24k stars 158 forks source link

Using app.configure in example code #27

Open mayeaux opened 8 years ago

mayeaux commented 8 years ago

In the example code we are using

app.configure(function() {
  app.use(express.cookieParser('keyboard cat'));
  app.use(express.session({ cookie: { maxAge: 60000 }}));
  app.use(flash());
});

But app.configure is removed in Express 4.0.

seanmavley commented 8 years ago

Looks like this project isn't maintained anymore