
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
superdevpack
Advanced tools
A configurable webpack development server, geared for React and Hot Module Reloading.
$ npm install superdevpack
$ superdevpack -h
Usage: superdevpack [options] [command]
Commands:
start Start development server
build Production build
help [cmd] display help for [cmd]
Options:
-h, --help output usage information
If you include a webpack.config.js file in your project root, superdevpack will pick it up and merge it into its default configuration. You can either export an object to merge, or a function to replace the configuration.
// webpack.config.js
module.exports = {} // object contents are merged into base configuration
module.exports = function(config) {
// override/replace any configuration and return the new configuration
return config
}
Calling superdevpack() will return an Express app ready to handle webpack and hot module reloads. Use this if you need to integrate into an existing application.
var superdevpack = require('superdevpack')
var app = superdevpack({
middleware: [], // middleware to prepend
fallback: '/index.html', // file to load if nothing matches
static: true // load static assets from config.output.path
})
app.listen(3000)
FAQs
configurable webpack dev server and build tool so you don't have to
We found that superdevpack demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.