dummy-static-middleware

0.1.0 • Public • Published

Dummy static middleware for expressjs

which prevents annoying 'not found' errors at development environment.

Installation

 
npm install dummy-static-middleware
 

Usage

 
app.use(express.static('static/'));
app.use(require('dummy-static-middleware')([
    {url: /\.(jpeg|jpg|JPG|png|gif)$/, reply: 'static/images/dummy404.png'},
    {url: '/some.txt', reply: 'static/dummy.txt'}
]));
 

url could be regular expression or string for exact matching, reply is path to file which content will be sent in the response.

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i dummy-static-middleware

      Weekly Downloads

      0

      Version

      0.1.0

      License

      none

      Last publish

      Collaborators

      • 2do2go