All Projects → jaylinski → swig-webpack-plugin

jaylinski / swig-webpack-plugin

Licence: MIT License
Render swig templates with webpack.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to swig-webpack-plugin

FoxNN
Simple neural network
Stars: ✭ 20 (+66.67%)
Mutual labels:  swig
tinyimg-webpack-plugin
A webpack plugin for compressing image
Stars: ✭ 61 (+408.33%)
Mutual labels:  webpack-plugin
FABGen
C++ binding generator for CPython 3.x (x>=2), Lua 5.3 and Go
Stars: ✭ 26 (+116.67%)
Mutual labels:  swig
idajava
Java integration for Hex-Rays IDA Pro
Stars: ✭ 25 (+108.33%)
Mutual labels:  swig
robotstxt-webpack-plugin
A webpack plugin to generate a robots.txt file
Stars: ✭ 31 (+158.33%)
Mutual labels:  webpack-plugin
bundle-inspector-webpack-plugin
Bundle Inspector | Analysis Tool for Webpack
Stars: ✭ 19 (+58.33%)
Mutual labels:  webpack-plugin
meteor-imports-webpack-plugin
Webpack plugin to import and use Meteor packages like if they were real NPM packages.
Stars: ✭ 25 (+108.33%)
Mutual labels:  webpack-plugin
webpack-auto-inject-version
Webpack plugin to auto inject version into html or file
Stars: ✭ 70 (+483.33%)
Mutual labels:  webpack-plugin
asset-graph-webpack-plugin
Webpack plugin to easily get assets dependency graph based on entry point
Stars: ✭ 13 (+8.33%)
Mutual labels:  webpack-plugin
add-module-exports-webpack-plugin
Add `module.exports` for Babel and TypeScript compiled code
Stars: ✭ 36 (+200%)
Mutual labels:  webpack-plugin
license-info-webpack-plugin
Making a list of package's LICENSE information for webpack
Stars: ✭ 20 (+66.67%)
Mutual labels:  webpack-plugin
dva-typescript-antd-starter-kit
A admin dashboard application demo based on antd by typescript and dva
Stars: ✭ 61 (+408.33%)
Mutual labels:  webpack-plugin
webpack-ext-reloader
Add hot reloading to your webpack WebExtension! 🔥
Stars: ✭ 31 (+158.33%)
Mutual labels:  webpack-plugin
chunk-progress-webpack-plugin
Provides runtime progress events by replacing default webpack chunk loading with XHR
Stars: ✭ 17 (+41.67%)
Mutual labels:  webpack-plugin
copy-modules-webpack-plugin
A Webpack plugin which copies module sources to a separate directory
Stars: ✭ 17 (+41.67%)
Mutual labels:  webpack-plugin
inline-source-webpack-plugin
A webpack plugin to embed css/js resource in the html.
Stars: ✭ 18 (+50%)
Mutual labels:  webpack-plugin
prettier-webpack-plugin
Process your Webpack dependencies with Prettier
Stars: ✭ 47 (+291.67%)
Mutual labels:  webpack-plugin
douMiBlog-Sailsjs
豆米博客-Sailsjs版,个人博客系统,使用SailsJs,MongoDb,Bootstrap,marked,SASS,swig等
Stars: ✭ 22 (+83.33%)
Mutual labels:  swig
chunk-splitting-plugin
Arbitrarily split your Webpack chunks and bundles into smaller pieces
Stars: ✭ 15 (+25%)
Mutual labels:  webpack-plugin
PyMFEM
Python wrapper for MFEM
Stars: ✭ 91 (+658.33%)
Mutual labels:  swig

swig-webpack-plugin

Note: since swig isn't maintained anymore, this plugin will not receive any new features.

Note: forked from html-webpack-plugin.

This is a webpack plugin that simplifies creation of HTML files to serve your webpack bundles. This is especially useful for webpack bundles that include a hash in the filename which changes every compilation. You can either let the plugin generate an HTML file for you or supply your own template (using swig).

Installation

Install the plugin with npm:

$ npm install swig-webpack-plugin --save-dev

Basic Usage

The plugin will generate an HTML file for you that includes all your webpack bundles in the body using script tags. Just add the plugin to your webpack config as follows:

var SwigWebpackPlugin = require('swig-webpack-plugin')
var webpackConfig = {
  entry: 'index.js',
  output: {
    path: 'dist',
    filename: '[name].js'
  },
  plugins: [new SwigWebpackPlugin()]
}

This will generate a file index.html from the default template.

If you have multiple webpack entry points, they will all be included with script tags in the generated HTML.

Configuration

You can pass a hash of configuration options to HtmlWebpackPlugin. Allowed values are as follows:

  • beautify: Beautify the HTML.
  • uglify: Uglify the HTML.
  • watch: add files to webpack's file-dependencies
  • filename: The file to write the HTML to. Defaults to index.html. You can specify a subdirectory here too (eg: src/admin.html).
  • data: Any data you want to pass to your swig templates. It will be available as {{data.myvariable}} in your templates.

Here's an example webpack config illustrating how to use these options:

{
  entry: 'index.js',
  output: {
    path: 'dist',
    filename: 'bundle.js'
  },
  plugins: [
    new SwigWebpackPlugin({
      filename: 'src/*.html',
      watch: 'src/**/*',
      beautify: true,
      data: {
      	myvariable: 'myvalue'
      }
    })
  ]
}

Generating Multiple HTML Files

To generate more than one HTML file, declare the plugin more than once in your plugins array:

{
  entry: 'index.js',
  output: {
    path: 'dist',
    filename: 'bundle.js'
  },
  plugins: [
    new SwigWebpackPlugin(), // Generates default index.html
    new SwigWebpackPlugin({  // Also generate a test.html
      filename: 'test.html',
      template: 'src/test.html'
    })
  ]
}

Writing Your Own Templates

If the default generated HTML doesn't meet your needs you can supply your own swig template. The default template is a good starting point for writing your own.

To use a custom template, configure the plugin like this:

{
  entry: 'index.js',
  output: {
    path: 'dist',
    filename: '[name].js'
  },
  plugins: [
    new SwigWebpackPlugin({
      template: 'src/my_template.html'
    })
  ]
}

Alternatively, if you already have your template's content in a String, you can pass it to the plugin using the templateContent option:

plugins: [
  new SwigWebpackPlugin({
    templateContent: templateContentString
  })
]

Note the plugin will throw an error if you specify both template and templateContent.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].