Skip to content

hugovincent/express-messages

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Express Messages

The express-messages module provides flash notification rendering. To use simply assign it to a dynamic helper:

msgs = require('express-messages')({'messages_class': 'alert-message', 'close_buttons': true});
app.dynamicHelpers({ messages: msgs});

Installation

$ npm install express-messages

Usage

Then in a view you may output the notifications based on your templating engine:

<%- messages() %>
!= messages()

Which outputs HTML as shown below:

<div id="express-messages">
  <div class="alert-message info">
    <a class="close">×</a>
    <p>Email queued</p>
  </div>
  <div class="alert-message info">
    <a class="close">×</a>
    <p>Email sent</p>
  </div>
  <div class="alert-message error">
    <a class="close">×</a>
    <p>Email delivery failed</p>
  </div>
</div>

Running Tests

First make sure you have the submodules:

$ git submodule update --init

Then run the tests:

$ make test

License

(The MIT License)

Copyright (c) 2010 TJ Holowaychuk <tj@vision-media.ca>

Copyright (c) 2011 Hugo Vincent <hugo.vincent@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Express flash notification message rendering. This fork of the original intends to improve operation with Twitter's Bootstrap (github.com/twitter/bootstrap).

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 75.3%
  • JavaScript 24.7%