1.0.2 • Published 3 years ago

snowpack-plugin-ejs v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

snowpack-plugin-ejs

Bring the power of EJS to Snowpack.


Quick Start

This plugin adds support for the EJS template engine to Snowpack.

Use npm to install it first.

npm i -D snowpack-plugin-ejs

Modify your snowpack config file to enable snowpack-plugin-ejs. You can also add plugin options if you want.

{
  plugins: [
    ['snowpack-plugin-ejs'],
  ],
}

// or...  assign render data
{
  plugins: [
    ['snowpack-plugin-ejs', {
      renderData: {
        nickname: 'Calf',
      },
    }],
  ],
}

Example

There is an example about how to use snowpack-plugin-ejs in ./example directory.

Plugin Options

ejsModule

optional

Assign this option to use your own ejs module.

This option can be useful when you have to rewrite some members of ejs module.

let ejs = require('ejs'),
ejs.cache = require('lru-cache')(100);

module.exports = {
  plugins: [
    ['snowpack', { ejsModule: ejs }],
  ],
};

renderOptions

Object | Function: optional

Provide options which EJS renderer uses. See EJS's document for details.

A function can also be provided, whose first argument is same to that of Snowpack's load hook.

renderData

Object | Function: optional

Use assigned data to render templates.

A function can also be provided, whose first argument is same to that of Snowpack's load hook.

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago