express-toastr
A toastr.js middleware for ExpressJS 4
Installation
npm install express-toastr
Requirements
express-toastr
depends on connect-flash
, express-session
, and cookie-parser
-- see the Usage section below.
Usage
Require express-toastr as a middleware:
// ExpressJSvar express = // Dependencies flash = session = cookieParser = // express-toastr toastr = ; // Initialize ExpressJSvar app = ;// Dependenciesapp;app
In your controller:
if err reqtoastr; else reqtoastr; //... res;
In your view:
<%= req.toastr.render() %>
Alternatively, you can add a middleware as follows:
app;
and in your view:
<!-- toastr.min.css, jquery.min.js, toastr.min.js --><%= toasts %>
Also see example/index.coffee
.
Available methods
// Add an info toastreqtoastr// Add a warning toastreqtoastr// Add an error toastreqtoastr// Add a success toastreqtoastr// Add a toast with a manually specified typereqtoastr// Clear existing toastsreqtoastrclear
Testing
Run npm test
to run the test suite or view the current test status here.
License
The MIT License (MIT)
Copyright (c) 2014 Kamal Nasser
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.