connect-jade-static

Connect (expressjs) middleware for serving html files from jade template

Usage no npm install needed!

<script type="module">
  import connectJadeStatic from 'https://cdn.skypack.dev/connect-jade-static';
</script>

README

connect-jade-static Build Status

Connect (ExpressJS) middleware for serving jade files as static html

Installation

npm install connect-jade-static

Usage

Assume the following structure of your project:

/views
  /partials
    /file.jade

Let's make jade files from /views/partials web accessable:

Express prior to 4.0

var jadeStatic = require('connect-jade-static');

app = express();
app.configure(function() {
  app.use(jadeStatic({
    baseDir: path.join(__dirname, '/views/partials'),
    baseUrl: '/partials',
    maxAge: 86400,
    jade: { pretty: true }
  }));
});

Express 4.0

var jadeStatic = require('connect-jade-static');

app = express();
app.use(jadeStatic({
  baseDir: path.join(__dirname, '/views/partials'),
  baseUrl: '/partials',
  maxAge: 86400,
  jade: { pretty: true }
}));

Now, if you start your web server and request /partials/file.html in browser you should be able see the compiled jade template.


by http://adslot.com