Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/derycktse/ejs-parser-loader
- Owner: derycktse
- Created: 2017-06-18T14:32:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-20T15:36:59.000Z (over 7 years ago)
- Last Synced: 2024-08-10T11:47:20.370Z (3 months ago)
- Topics: ejs, webpack, webpack-loader
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
}
}]
```