
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@ng-rsbuild/plugin-angular
Advanced tools
Plugin providing Rsbuild support for Angular applications, both SSR and CSR.
Thank you to Brandon Roberts and Analog for their work on building Angular applications with Vite which both inspired this plugin and provided a basis for the compilation implementation.
Prerequisites: Angular SSR Application already created with ng new --ssr.
npm install --save-dev @rsbuild/corenpm install --save-dev @ng-rsbuild/plugin-angularrsbuild.config.ts file at the root of your project with the following:import { createConfig } from '@ng-rsbuild/plugin-angular';
export default createConfig({
browser: './src/main.ts',
server: './src/main.server.ts',
ssrEntry: './src/server.ts',
});
./src/server.ts file to use the createServer util:import { createServer } from '@ng-rsbuild/plugin-angular/ssr';
import bootstrap from './main.server';
const server = createServer(bootstrap);
/** Add your custom server logic here
*
* For example, you can add a custom static file server:
*
* server.app.use('/static', express.static(staticFolder));
*
* Or add additional api routes:
*
* server.app.get('/api/hello', (req, res) => {
* res.send('Hello World!');
* });
*
* Or add additional middleware:
*
* server.app.use((req, res, next) => {
* res.send('Hello World!');
* });
*/
server.listen();
npx rsbuild buildnode dist/server/server.jsnpx rsbuild devPrerequisites: Angular CSR Application already created with ng new.
npm install --save-dev @rsbuild/corenpm install --save-dev @ng-rsbuild/plugin-angularrsbuild.config.ts file at the root of your project with the following:import { createConfig } from '@ng-rsbuild/plugin-angular';
export default createConfig({
browser: './src/main.ts',
});
npx rsbuild buildnpx rsbuild dev21.0.4 (2025-05-21)
FAQs
Rsbuild Plugin for building Angular.
We found that @ng-rsbuild/plugin-angular 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.