A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/rstacruz/ractive-loader below:

rstacruz/ractive-loader: ractive template loader for webpack

Exports a Ractive template as a compiled template for webpack.

Documentation: using loaders

Install this into your project:

$ npm install --save ractive-loader

Make all your .html files compile down to Ractive templates by modifying your webpack.config.js file:

/* webpack.config.js */
module.exports = {
  module: {
    loaders: [
      { test: /\.html$/, loader: 'ractive' }
    ]
  },
  ...
};

Then use your Ractive templates via require():

new Ractive({
  template: require('./mytemplate.html')
});

You can also use it without modifying your config. Just explicitly call it on your require() call via a prefix:

new Ractive({
  template: require('ractive!./mytemplate.html')
});

ractive-loader © 2014+, Rico Sta. Cruz. Released under the MIT License.
Authored and maintained by Rico Sta. Cruz with help from contributors (list).

ricostacruz.com  ·  GitHub @rstacruz  ·  Twitter @rstacruz


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4