Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ngx-build-plus

Package Overview
Dependencies
Maintainers
1
Versions
82
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

  • 18.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
207K
increased by0.46%
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 07 Jun 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc