Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/derycktse/ejs-parser-loader

ejs-parser-loader is a loader for webpack to parse ejs template
https://github.com/derycktse/ejs-parser-loader

ejs webpack webpack-loader

Last synced: 24 days ago
JSON representation

ejs-parser-loader is a loader for webpack to parse ejs template

Awesome Lists containing this project

README

        

# ejs-parser-loader for webpack #

ejs-parser-loader is a loader for webpack to parse ejs template

## Installation ##

Install the plugin with npm:
```
$ npm install ejs-parser-loader --save-dev
```

## usage ##

```javascript
//webpack config
rules: [{
test: /\.ejs$/,
loader: 'ejs-parser-loader',
options: { //options will be pass into ejs.compiled function
}
}]
```