primus-client-webpack-plugin
v1.1.0
Published
Build client side primus script and add to build assets
Downloads
5
Maintainers
Readme
PrimusClientWebpackPlugin
This is a fork of primus-webpack-plugin. It uses publicPath inside your HtmlWebpackPlugin.
Build client side Primus script and add to build assets 📦⚡
Introduction
Primus is a socket wrapper implementation that requires a built client library. The client library also needs to match the configuration of the server side implementation. Primus handles this by exposing primus.library()
which returns the client library as a string.
This is problematic in applications that bundle and dynamically generate client assets. It is also problematic because unless you want to serve the client script directly from your websocket server (not a great approach IMO) you need to prebuild and package the client script anyway.
This plugin allows you to pass in your Primus options and then adds the client library to your Webpack build assets.
If HtmlWebpackPlugin is being used it will also add the asset to the output HTML :tada:
Usage
Install PrimusClientWebpackPlugin:
npm install --save-dev primus-client-webpack-plugin
In webpack.config.js:
const PrimusClientWebpackPlugin = require('primus-client-webpack-plugin')
...
new PrimusClientWebpackPlugin({
filename: 'primus-client.[hash].js',
minify: true,
primusOptions: {
transformer: 'uws',
parser: {
encoder: function (data, fn) {
fn(null, JSON.stringify(data))
},
decoder: function (data, fn) {
fn(null, JSON.parse(data))
}
}
}
})
Options:
Name | Description | Default
--------------------|-------------------------------------------|---------------
filename | Name of generated file | primus-client.js
minify | Whether or not to minify the file | false
primusOptions | Options for the Primus Server | {}
Caveats
primus.library()
generates a UMDish style file but it doesn't seem to work being bundled with Webpack, instead a global Primus
constructor is added. If you want to require/import
Primus you will need to shim it in your Webpack config.