{"library":"qiao-webpack","title":"qiao-webpack","description":"qiao-webpack is a webpack utility library for simplifying webpack configuration in Node.js projects. The current stable version is 5.0.5, released in 2023 with irregular updates. It wraps common webpack functionality into concise APIs, reducing boilerplate. Unlike raw webpack usage, qiao-webpack provides pre-configured loaders and plugins for rapid setup, though it may lack customization. Suitable for quick prototyping with webpack but not recommended for complex builds. Requires webpack and related loaders as peer dependencies.","language":"javascript","status":"active","last_verified":"Sat May 09","install":{"commands":["npm install qiao-webpack"],"cli":null},"imports":["const webpack = require('qiao-webpack')","const { qiaoWebpack } = require('qiao-webpack')","const { build } = require('qiao-webpack')"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"const webpack = require('qiao-webpack');\n\n// Minimal webpack configuration\nconst config = {\n  entry: './src/index.js',\n  output: {\n    path: __dirname + '/dist',\n    filename: 'bundle.js'\n  }\n};\n\n// Run webpack with config\nwebpack(config).then(stats => {\n  console.log('Build completed:', stats);\n}).catch(err => {\n  console.error('Build failed:', err);\n});","lang":"javascript","description":"Shows basic usage of qiao-webpack to compile an entry point with default settings.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}