
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
fastify-angular-universal
Advanced tools
Fastify plugin for rendering an Angular app from the server using Angular Universal
Angular server-side rendering support for Fastify using Angular Universal.
npm install --save fastify-angular-universal
Add it to you project with register and pass the required options.
Follow the tutorial on how to perform SSR in Angular with Angular CLI here ONLY UNTIL step 3.
For the steps 4 and onwards use the following server.ts or check out the server.ts in the test-app directory
// These are important and needed before anything else
import 'zone.js/dist/zone-node';
import 'reflect-metadata';
import { join } from 'path';
import { readFileSync } from 'fs';
import { enableProdMode } from '@angular/core';
import * as fastify from 'fastify';
// * NOTE :: leave this as require() since this file is built Dynamically from webpack
const { AppServerModuleNgFactory, LAZY_MODULE_MAP } = require('./dist/<your-project-name-here>-server/main');
const { provideModuleMap } = require('@nguniversal/module-map-ngfactory-loader');
// Faster server renders w/ Prod mode (dev mode never needed)
enableProdMode();
const PORT = process.env.PORT || 3000;
const DIST_FOLDER = join(process.cwd(), 'dist');
// Our index.html we'll use as our template
const template = readFileSync(join(DIST_FOLDER, '<your-project-name-here>', 'index.html')).toString();
const app = fastify();
app.register(require('fastify-static'), {
root: join(DIST_FOLDER, '<your-project-name-here>'),
prefix: '/static/'
});
// register the fastify-angular-universal to your application together with the required options
app.register(require('fastify-angular-universal'), {
serverModule: AppServerModuleNgFactory,
document: template,
extraProviders: [
provideModuleMap(LAZY_MODULE_MAP)
]
});
// Declare a route
app.get('/*', function (request, reply) {
// NOTE: you can also pass the options for the fastify-angular-universal fastify plugin
// as second parameter to the `.renderNg()` function.
//
// Example: `reply.renderNg(url, options)`
(reply as any).renderNg(request.req.url);
});
// Run the server!
app.listen(PORT, function (err) {
if (err) {
throw err;
}
console.log(`server listening on ${app.server.address().port}`);
});
This plugin allow you to specify options:
serverModule to specify the NgModuleFactory to be used in rendering an Angular app in the serverdocument to specify the template where the Angular app will be renderedextraProviders to specify additional providers to be used by the Angular app. (optional)MIT.
FAQs
Fastify plugin for rendering an Angular app from the server using Angular Universal
We found that fastify-angular-universal demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.