
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
@angular-devkit/build-webpack
Advanced tools
The @angular-devkit/build-webpack package is a toolkit designed to work with Angular projects, providing utilities and features to enhance the build process of Angular applications using Webpack. It abstracts complex configurations and optimizations into more manageable and Angular-centric commands and configurations.
Custom Webpack Configuration
Allows developers to extend or override the default Webpack configuration used by Angular CLI, enabling customizations and optimizations specific to their project's needs.
const { buildWebpackConfig } = require('@angular-devkit/build-webpack');
const customWebpackConfig = {
// Custom Webpack configurations
};
const webpackConfig = buildWebpackConfig(defaultConfig, customWebpackConfig);
Webpack Dev Server Integration
Facilitates the integration of Webpack Dev Server with Angular projects, simplifying the process of serving applications locally for development with live reloading and other development-friendly features.
const { serveWebpackBrowser } = require('@angular-devkit/build-webpack');
serveWebpackBrowser({
// Options for serving
});
Optimization Utilities
Provides utilities to optimize the Webpack configuration for production builds, including minification, tree shaking, and other performance enhancements.
const { optimizeWebpackConfig } = require('@angular-devkit/build-webpack');
const optimizedConfig = optimizeWebpackConfig(defaultConfig, {
// Optimization options
});
Webpack is the core technology behind @angular-devkit/build-webpack. It's a static module bundler for JavaScript applications. While @angular-devkit/build-webpack provides Angular-specific integrations and abstractions, Webpack itself is more generic and can be used with any JavaScript framework or library.
Angular CLI is a command-line interface tool that you use to initialize, develop, scaffold, and maintain Angular applications. It uses @angular-devkit/build-angular, which in turn relies on @angular-devkit/build-webpack for its Webpack integration. Angular CLI abstracts away much of the complexity of the build configuration, making it easier to use but less flexible than directly using Webpack or @angular-devkit/build-webpack.
Create React App is a similar tool to Angular CLI but for React applications. It abstracts the Webpack configuration for React projects, providing a simplified development experience. Unlike @angular-devkit/build-webpack, it's tailored specifically for React and doesn't offer the same level of Angular integration or customization.
WIP
20.0.2 (2025-06-11)
| Commit | Type | Description |
| --------------------------------------------------------------------------------------------------- | ---- | --------------------------------------------------------------------- |
| bf64a0f2d | fix | add less
as a devDependency when selected as the style preprocessor |
| cb258a3e1 | fix | correctly detect modules using new file extension format |
| Commit | Type | Description | | --------------------------------------------------------------------------------------------------- | ---- | ---------------------------------------------------------- | | 424f1cbbf | fix | do not consider internal Angular files as external imports |
<!-- CHANGELOG SPLIT MARKER --><a name="19.2.15"></a>
FAQs
Webpack Builder for Architect
The npm package @angular-devkit/build-webpack receives a total of 3,030,120 weekly downloads. As such, @angular-devkit/build-webpack popularity was classified as popular.
We found that @angular-devkit/build-webpack demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.