y8n / inline-template-loader

a webpack loader to inline template as string

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

inline-template-loader

Install

npm install inline-template-loader

Usage

// webpack.conf.js

module: {
  rules:[{
    test: /\.js$/,
    loader: 'inline-template-loader'
  }]
}

Output

// index.js
function foo(){
  return __inline('./template.html');
}
// template.html
<div class="template">
  <h1>HelloWorld</h1>
</div>
// output.js
function foo(){
  return '<div class="template"><h1>HelloWorld</h1></div>';
}

options

// webpack.conf.js

module: {
  rules:[{
    test: /\.js$/,
    loader: 'inline-template-loader',
    options: {
      pattern: /__template(/    // 正则
      replcement: function(m){  // 替换方法
        return m.slice(1);
      }
    }
  }]
}

License

MIT

About

a webpack loader to inline template as string


Languages

Language:JavaScript 100.0%