webpack-prompt-plugin

Used to prompt ip link and some other information when webpack-dev-server Successfully started

Usage no npm install needed!

<script type="module">
  import webpackPromptPlugin from 'https://cdn.skypack.dev/webpack-prompt-plugin';
</script>

README

webpack-prompt-plugin

Used to prompt ip link and some other information when webpack-dev-server Successfully started

usage

install

yarn add webpack-prompt-plugin --dev

或者

pnpm install webpack-prompt-plugin -D
const webpackPromptPlugin = require('webpack-prompt-plugin');

module.exports = {
  // ...
  plugins: [
    new webpackPromptPlugin()
  ],
}
// 带参数
module.exports = {
  // ...
  plugins: [
    new WebpackPromptPlugin({
      tips: [
        {
          name: '[🏀] web project',
          color: 'green'
        },
        'this is react spa project'
      ],
      style: 'table'
    })
  ],
}

Instance attributes

style 'default' | 'text' | 'table'

  • default

    default style

  • text

    text style

  • table

    table style

default style is default 😂

tips: Array<{ text: string, color?: string } | string>

Prompt message queue, array object or string array can be

{
  tips: [
    {
      name: '[🏀] web project',
      color: 'green'
    },
    'this is react spa project'
  ],
}

tips text