
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
hops-build
Advanced tools
hops-build is a wrapper around webpack and hops-build-config which exports functions to execute a single build or start a webpack-dev-server.
runBuild(options, callback)runBuild() can be used to execute a webpack build.
If being used with the static option set to true it will generate html files for all locations configured in your package.json.
If being used without the static option it will run the webpack build for the buildConfig and nodeConfig (see hops-build-config for more details).
runBuild() supports the following options:
| Field | Type | Default | Description |
|---|---|---|---|
| static | boolean | false | Whether to statically build app shells for all locations |
| clean | boolean | true | Whether to clean the build and cache directories before starting the build |
The callback is being called after the build has finished and can be used to schedule further work.
runServer(options, callback)runServer() can be used to start a webpack-dev-server. It will take the developConfig with its watchConfig (see hops-build-config for more details) and start a webpack-dev-server.
runServer() supports the following options:
| Field | Type | Default | Description |
|---|---|---|---|
| clean | boolean | true | Whether to clean the build and cache directories before starting the server |
The callback is being called after the server has started and can be used to schedule further work.
If you want to programmatically start a webpack build then you should use this module.
build.jsvar hopsBuild = require('hops-build');
hopsBuild.runBuild({}, function() {
console.log('the build has finished');
});
FAQs
Hops wrapper around webpack to execute a build
We found that hops-build demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.