Registry / devops / start-webpack

start-webpack

JSON →
library0.3.0jsnpmunverified

Webpack task for Start task runner, version 0.3.0. It provides a simple wrapper around webpack 3, intended for use with the Start task runner ecosystem. It was last released in 2017 and no longer maintained. Key differentiators: minimal integration with start-runner, no support for webpack 4+, Node.js >=4 required.

npm install start-webpack
INSTALL
IMPORT
SIG · START-WEBPACK
S
start-webpack
devopsjavascriptv0.3.0
Install
Import
Disk
Pass rate
0/ 6
Env Coverage0 / 6
glibc
1822
musl
1822
Install & Compatibility
Where this runs
tested against v? · npm install
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
node 18226 runs
build_error
glibc
node 18226 runs
build_error
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

webpack
import webpack from 'start-webpack'
const webpack = require('start-webpack')
ESM default export. CommonJS require works but not recommended for modern usage.

Shows how to define a Start task using start-webpack with a basic webpack config.

import Start from 'start'; import reporter from 'start-pretty-reporter'; import files from 'start-files'; import clean from 'start-clean'; import webpack from 'start-webpack'; const start = Start(reporter()); const config = { entry: './src/index.js', output: { path: __dirname + '/dist', filename: 'bundle.js' } }; export const build = () => start( files('build/'), clean(), webpack(config) );
Debug
Known issues
deprecatedPackage is unmaintained since 2017. webpack 3 is outdated and has known security vulnerabilities.
fix
Migrate to webpack 4/5 and use @start-task/webpack or direct webpack API.
affects: >=0
breakingBreaking change in v0.2.0: drops Node <4 and requires webpack@2. v0.3.0 requires webpack@3.
fix
Ensure you have webpack@2 installed for v0.2.x, or webpack@3 for v0.3.0.
affects: >=0.2.0 <0.3.0
gotchaThe task runner 'start' must be installed separately; it is not a dependency.
fix
Add 'start' to your devDependencies: npm install --save-dev start
affects: >=0
gotchaThe webpack config must be passed via require (synchronous) because webpack expects an object. Using import may cause issues if config is not exported correctly.
fix
Use require('./webpack.config') or import with care.
affects: >=0
Errors
Common errors & fixes
Error: Cannot find module 'webpack'
webpack is not installed as a peer dependency.
fix
npm install --save-dev webpack@3
TypeError: webpack is not a function
Using webpack 4+ which changed the API; this package only supports webpack 2-3.
fix
Install webpack@3 or migrate to a different integration.
Error: Cannot find module 'start'
The 'start' task runner is not installed.
fix
npm install --save-dev start
Upgrade
Version history
0.3.0latest on npm
Audit
Dependencies
startrequiredpeer dependency – required as task runner
webpackrequiredpeer dependency – webpack 2 or 3
Agent activity
3 hits · last 30 days
node
2
Amazon
1
Resources
start-webpack — npm install start-webpack · libregistry