🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

ngx-build-plus

Package Overview
Dependencies
Maintainers
1
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-build-plus

Extends the Angular CLI's build process

20.0.0
latest
Source
npm
Version published
Weekly downloads
247K
4.92%
Maintainers
1
Weekly downloads
 
Created

What is ngx-build-plus?

ngx-build-plus is an npm package that extends the Angular CLI build process, allowing for more customization and flexibility. It enables developers to modify the webpack configuration, add custom builders, and integrate additional plugins without ejecting the Angular CLI.

What are ngx-build-plus's main functionalities?

Custom Webpack Configuration

This feature allows you to provide a custom webpack configuration file (e.g., `webpack.extra.js`) to extend or override the default Angular CLI webpack configuration.

```json
{
  "architect": {
    "build": {
      "builder": "ngx-build-plus:build",
      "options": {
        "extraWebpackConfig": "webpack.extra.js"
      }
    }
  }
}
```

Multi-App Builds

This feature enables the building of multiple Angular applications into a single bundle, which can be useful for micro-frontend architectures.

```json
{
  "architect": {
    "build": {
      "builder": "ngx-build-plus:build",
      "options": {
        "singleBundle": true
      }
    }
  }
}
```

Custom Builders

This feature allows you to specify a custom builder script to handle the build process, providing more control over how your application is built.

```json
{
  "architect": {
    "build": {
      "builder": "ngx-build-plus:build",
      "options": {
        "customBuilder": "./path/to/custom-builder.js"
      }
    }
  }
}
```

Other packages similar to ngx-build-plus

FAQs

Package last updated on 02 Jun 2025

Did you know?

Socket

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.

Install

Related posts