0.1.2 • Published 7 years ago

parallel-es-webpack-plugin v0.1.2

Weekly downloads
10
License
MIT
Repository
github
Last release
7 years ago

Parallel.ES Webpack Plugin

Build Status Coverage Status

A Webpack Plugin that rewrites your Parallel.ES code to add support for debugging your worker code, accessing variables and calling functions from the outer scope from parallel functions and using imports.

Getting Started

Install the webpack plugin using npm:

npm install --save-dev parallel-es-wepback-plugin

Import the plugin, add it to your webpack configuration and enable babel loader for your source files:

var path = require("path");
var ParallelEsPlugin = require("parallel-es-webpack-plugin"); // <—— Import Plugin

const FILE_NAME = "[name].js";

module.exports = {
    devtool: "#source-map",
    entry: {
        examples: "./src/browser-example.js"
    },
    output: {
        path: path.resolve(__dirname, "dist"),
        filename: "[name].js"
    },
    module: {
        loaders: [
            {
                test: /\.js$/,         // <—— Add Babel-Loader
                loader: "babel-loader",
                query: {
	                "plugins": ["parallel-es"]   // <— Add Babel Plugin
                }
            }
        ]
    },
    plugins: [
        new ParallelEsPlugin()  // <———— Add Webpack Plugin
    ]
};

Of course, you can also add the babel-plugin in your .babelrc

Use ES5 Version of Parallel.ES

The Plugin uses by default the ES6 Version of Parallel.ES. If you want to use the ES5 version instead, you can define the file to use in the plugin constructor:

…
plugins: [
	new ParallelEsPlugin({
		workerSlaveFileName: "parallel-es/dist/worker-slave.parallel-es.js" 
	})  
]
…

Transpile Source Code

You can normally transpile your source code using babel (in combination with the babel loader). However, the code of the parallel-es plugin is not transpiled by default. The babel options for the parallel-es plugin can be configured by passing them in the plugin constructor:

…
new ParallelEsPlugin({
	babelOptions: {
		"presets": [
			["es2015", { "modules": false }]
		]
	}
})
…

Sample Configuration / Project

The Parallel-ES-Rewriter-Example is a small project that is using the parallel-es-webpack-plugin to rewrite the code.

Internals

The Plugin does not perform the code rewriting itself. The code rewriting is performed by the babel-plugin-parallel-es

0.1.2

7 years ago

0.1.1

8 years ago

0.1.0

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago