├── .gitignore ├── .npmignore ├── .travis.yml ├── Makefile ├── example ├── app.js ├── public │ ├── css │ │ ├── boilerplate.css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ └── style.css │ ├── favicon.ico │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── jquery-1.8.0.min.js └── views │ ├── index.jade │ └── layout.jade ├── index.js ├── lib └── express-flash.js ├── package.json ├── readme.md └── test ├── flash.spec.js └── flash.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | *.tmproj 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .git* 2 | .travis* 3 | Makefile 4 | test/ 5 | example/ 6 | .DS_Store 7 | *.tmproj -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/Makefile -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/example/app.js -------------------------------------------------------------------------------- /example/public/css/boilerplate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/example/public/css/boilerplate.css -------------------------------------------------------------------------------- /example/public/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/example/public/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /example/public/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/example/public/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /example/public/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/example/public/css/bootstrap.css -------------------------------------------------------------------------------- /example/public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/example/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /example/public/css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top:20px; 3 | } -------------------------------------------------------------------------------- /example/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/example/public/favicon.ico -------------------------------------------------------------------------------- /example/public/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/example/public/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /example/public/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/example/public/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /example/public/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/example/public/js/bootstrap.js -------------------------------------------------------------------------------- /example/public/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/example/public/js/bootstrap.min.js -------------------------------------------------------------------------------- /example/public/js/jquery-1.8.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/example/public/js/jquery-1.8.0.min.js -------------------------------------------------------------------------------- /example/views/index.jade: -------------------------------------------------------------------------------- 1 | extends layout -------------------------------------------------------------------------------- /example/views/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/example/views/layout.jade -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/index.js -------------------------------------------------------------------------------- /lib/express-flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/lib/express-flash.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/readme.md -------------------------------------------------------------------------------- /test/flash.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/test/flash.spec.js -------------------------------------------------------------------------------- /test/flash.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RGBboy/express-flash/HEAD/test/flash.test.js --------------------------------------------------------------------------------