qr-call-webpack-plugin
v1.1.1
Published
qr-call-webpack-plugin qrcode-terminal webpack-plugin
Maintainers
Readme
qr-call-webpack-plugin
A webpack plugin of Call the terminal to output QR code through the browser console
Install
$ npm i qr-call-webpack-pluginUsage
const QRCallWebpackPlugin = require('qr-call-webpack-plugin')in the webpack
const webpackConfig = {
...,
plugins: [
...,
new QRCallWebpackPlugin({
small: true
}),
],
}Options
|param |type |describe | | ------------ | ------------ | ------------ | | fileNames | string or array | the file names of the injection qr method. If you ignore this option, the qr method will be injected into all bundle files. | | small | boolean | output small size qrcode | | name | string | function name of the browser |
Browser function
Call the qr() method in the browser console, and output the qrcode for terminal.
- qr('s')
When the 's' parameter is passed in qr('s') method, terminal will output the small qrcode.
- qr('l')
When the 'l' parameter is passed in qr('l') method, terminal will output the big qrcode.
