W3cubDocs

/Angular

Server-side rendering (SSR) with Angular Universal

This guide describes Angular Universal, a technology that allows Angular to render applications on the server.

By default, Angular renders applications only in a browser. Angular Universal allows Angular to render an application on the server, generating static HTML content, which represents an application state. Once the HTML content is rendered in a browser, Angular bootstraps an application and reuses the information available in the server-generated HTML.

With server-side rendering an application generally renders in a browser faster, giving users a chance to view the application UI before it becomes fully interactive. See the "Why use Server-Side Rendering?" section below for additional information.

Also for a more detailed look at different techniques and concepts surrounding SSR, check out this article.

You can enable server-side rendering in your Angular application using the @nguniversal/express-engine package as described below.

Angular Universal requires an active LTS or maintenance LTS version of Node.js. For information see the version compatibility guide to learn about the currently supported versions.

Universal tutorial

The Tour of Heroes tutorial is the foundation for this walkthrough.

In this example, the Angular CLI compiles and bundles the Universal version of the application with the Ahead-of-Time (AOT) compiler. A Node.js Express web server compiles HTML pages with Universal based on client requests.

Download the finished sample code, which runs in a Node.js® Express server.

Step 1. Enable Server-Side Rendering

Run the following command to add SSR support into your application:

ng add @nguniversal/express-engine

The command updates the application code to enable SSR and adds extra files to the project structure (files that are marked with the * symbol).

src
  index.html // <-- app web page
  main.ts // <-- bootstrapper for client app
  main.server.ts // <-- * bootstrapper for server app
  style.css // <-- styles for the app
  app/ … // <-- application code
    app.config.ts // <-- client-side application configuration (standalone app only)
    app.module.ts // <-- client-side application module (NgModule app only)
    app.config.server.ts // <-- * server-side application configuration (standalone app only)
    app.module.server.ts // <-- * server-side application module (NgModule app only)
  server.ts // <-- * express web server
  tsconfig.json // <-- TypeScript base configuration
  tsconfig.app.json // <-- TypeScript browser application configuration
  tsconfig.server.json // <-- TypeScript server application configuration
  tsconfig.spec.json // <-- TypeScript tests configuration

Step 2. Enable Client Hydration

The hydration feature is available for developer preview. It's ready for you to try, but it might change before it is stable.

Hydration is the process that restores the server side rendered application on the client. This includes things like reusing the server rendered DOM structures, persisting the application state, transferring application data that was retrieved already by the server, and other processes. Learn more about hydration in this guide.

You can enable hydration by updating the app.module.ts file. Import the provideClientHydration function from @angular/platform-browser and add the function call to the providers section of the AppModule as shown below.

import {provideClientHydration} from '@angular/platform-browser';
// ...

@NgModule({
  // ...
  providers: [ provideClientHydration() ],  // add this line
  bootstrap: [ AppComponent ]
})
export class AppModule {
  // ...
}

Step 3. Start the server

To start rendering your application with Universal on your local system, use the following command.

npm run dev:ssr

Step 4. Run your application in a browser

Once the web server starts, open a browser and navigate to http://localhost:4200. You should see the familiar Tour of Heroes dashboard page.

Navigation using routerLinks works correctly because they use the built-in anchor (<a>) elements. You can go from the Dashboard to the Heroes page and back. Click a hero on the Dashboard page to display its Details page.

If you throttle your network speed so that the client-side scripts take longer to download (instructions following), you'll notice:

  • You can't add or delete a hero
  • The search box on the Dashboard page is ignored
  • The Back and Save buttons on the Details page don't work

The transition from the server-rendered application to the client application happens quickly on a development machine, but you should always test your applications in real-world scenarios.

You can simulate a slower network to see the transition more clearly as follows:

  1. Open the Chrome Dev Tools and go to the Network tab.
  2. Find the Network Throttling dropdown on the far right of the menu bar.
  3. Try one of the "3G" speeds.

The server-rendered application still launches quickly but the full client application might take seconds to load.

Why use Server-Side Rendering?

There are three main reasons to create a Universal version of your application.

Facilitate web crawlers (SEO)

Google, Bing, Facebook, Twitter, and other social media sites rely on web crawlers to index your application content and make that content searchable on the web. These web crawlers might be unable to navigate and index your highly interactive Angular application as a human user could do.

Angular Universal can generate a static version of your application that is easily searchable, linkable, and navigable without JavaScript. Universal also makes a site preview available because each URL returns a fully rendered page.

Improve performance on mobile and low-powered devices

Some devices don't support JavaScript or execute JavaScript so poorly that the user experience is unacceptable. For these cases, you might require a server-rendered, no-JavaScript version of the application. This version, however limited, might be the only practical alternative for people who otherwise couldn't use the application at all.

Show the first page quickly

Displaying the first page quickly can be critical for user engagement. Pages that load faster perform better, even with changes as small as 100ms. Your application might have to launch faster to engage these users before they decide to do something else.

With Angular Universal, you can generate landing pages for the application that look like the complete application. The pages are pure HTML, and can display even if JavaScript is disabled. The pages don't handle browser events, but they do support navigation through the site using routerLink.

In practice, you'll serve a static version of the landing page to hold the user's attention. At the same time, you'll load the full Angular application behind it. The user perceives near-instant performance from the landing page and gets the full interactive experience after the full application loads.

Universal web servers

A Universal web server responds to application page requests with static HTML rendered by the Universal template engine. The server receives and responds to HTTP requests from clients (usually browsers), and serves static assets such as scripts, CSS, and images. It might respond to data requests, either directly or as a proxy to a separate data server.

The sample web server for this guide is based on the popular Express framework.

NOTE: Any web server technology can serve a Universal application as long as it can call Angular platform-server package renderModule or renderApplication functions. The principles and decision points discussed here apply to any web server technology.

Universal applications use the Angular platform-server package (as opposed to platform-browser), which provides server implementations of the DOM, XMLHttpRequest, and other low-level features that don't rely on a browser.

The server (Node.js Express in this guide's example) passes client requests for application pages to the NgUniversal ngExpressEngine. Under the hood, the engine renders the app, while also providing caching and other helpful utilities.

The render function takes as inputs a template HTML page (usually index.html), and an Angular module containing components. Alternatively, it can take a function that when invoked returns a Promise that resolves to an ApplicationRef, and a route that determines which components to display. The route comes from the client's request to the server.

Each request results in the appropriate view for the requested route. The render function renders the view within the <app> tag of the template, creating a finished HTML page for the client.

Finally, the server returns the rendered page to the client.

Working around the browser APIs

Because a Universal application doesn't execute in the browser, some of the browser APIs and capabilities might be missing on the server.

For example, server-side applications can't reference browser-only global objects such as window, document, navigator, or location.

Angular provides some injectable abstractions over these objects, such as Location or DOCUMENT; it might substitute adequately for these APIs. If Angular doesn't provide it, it's possible to write new abstractions that delegate to the browser APIs while in the browser and to an alternative implementation while on the server (also known as shimming).

Similarly, without mouse or keyboard events, a server-side application can't rely on a user clicking a button to show a component. The application must determine what to render based solely on the incoming client request. This is a good argument for making the application routable.

Universal and the Angular Service Worker

If you are using Universal in conjunction with the Angular service worker, the behavior is different than the normal server side rendering behavior. The initial server request will be rendered on the server as expected. However, after that initial request, subsequent requests are handled by the service worker. For subsequent requests, the index.html file is served statically and bypasses server side rendering.

Universal template engine

The important bit in the server.ts file is the ngExpressEngine() function.

// Our Universal express-engine (found @ https://github.com/angular/universal/tree/main/modules/express-engine)
server.engine('html', ngExpressEngine({
  bootstrap: AppServerModule,
}));

The ngExpressEngine() function is a wrapper around the Angular platform-server package renderModule and renderApplication functions which turns a client's requests into server-rendered HTML pages.

It accepts an object with the following properties:

Properties Details
bootstrap The root NgModule or function that when invoked returns a Promise that resolves to an ApplicationRef of the application when rendering on the server. For the example application, it is AppServerModule. It's the bridge between the Universal server-side renderer and the Angular application.
extraProviders This property is optional and lets you specify dependency providers that apply only when rendering the application on the server. Do this when your application needs information that can only be determined by the currently running server instance.

The ngExpressEngine() function returns a Promise callback that resolves to the rendered page. It's up to the engine to decide what to do with that page. This engine's Promise callback returns the rendered page to the web server, which then forwards it to the client in the HTTP response.

Filtering request URLs

NOTE: The basic behavior described below is handled automatically when using the NgUniversal Express package. This is helpful when trying to understand the underlying behavior or replicate it without using the package.

The web server must distinguish app page requests from other kinds of requests.

It's not as simple as intercepting a request to the root address /. The browser could ask for one of the application routes such as /dashboard, /heroes, or /detail:12. In fact, if the application were only rendered by the server, every application link clicked would arrive at the server as a navigation URL intended for the router.

Fortunately, application routes have something in common: their URLs lack file extensions. (Data requests also lack extensions but they can be recognized because they always begin with /api.) All static asset requests have a file extension (such as main.js or /node_modules/zone.js/bundles/zone.umd.js).

Because you use routing, you can recognize the three types of requests and handle them differently.

Routing request types Details
Data request Request URL that begins /api
App navigation Request URL with no file extension
Static asset All other requests

A Node.js Express server is a pipeline of middleware that filters and processes requests one after the other. You configure the Node.js Express server pipeline with calls to server.get() like this one for data requests:

// TODO: implement data requests securely
server.get('/api/**', (req, res) => {
  res.status(404).send('data requests are not yet supported');
});

NOTE: This sample server doesn't handle data requests.

The tutorial's "in-memory web API" module, a demo and development tool, intercepts all HTTP calls and simulates the behavior of a remote data server. In practice, you would remove that module and register your web API middleware on the server here.

The following code filters for request URLs with no extensions and treats them as navigation requests:

// All regular routes use the Universal engine
server.get('*', (req, res) => {
  res.render(indexHtml, { req, providers: [{ provide: APP_BASE_HREF, useValue: req.baseUrl }] });
});

Serving static files safely

A single server.use() treats all other URLs as requests for static assets such as JavaScript, image, and style files.

To ensure that clients can only download the files that they are permitted to see, put all client-facing asset files in the /dist folder and only honor requests for files from the /dist folder.

The following Node.js Express code routes all remaining requests to /dist, and returns a 404 - NOT FOUND error if the file isn't found.

// Serve static files from /browser
server.get('*.*', express.static(distFolder, {
  maxAge: '1y'
}));

Using absolute URLs for HTTP (data) requests on the server

The tutorial's HeroService and HeroSearchService delegate to the Angular HttpClient module to fetch application data. These services send requests to relative URLs such as api/heroes. In a server-side rendered app, HTTP URLs must be absolute (for example, https://my-server.com/api/heroes). This means that the URLs must be somehow converted to absolute when running on the server and be left relative when running in the browser.

If you are using one of the @nguniversal/*-engine packages (such as @nguniversal/express-engine), this is taken care for you automatically. You don't need to do anything to make relative URLs work on the server.

If, for some reason, you are not using an @nguniversal/*-engine package, you might need to handle it yourself.

The recommended solution is to pass the full request URL to the options argument of renderModule. This option is the least intrusive as it does not require any changes to the application. Here, "request URL" refers to the URL of the request as a response to which the application is being rendered on the server. For example, if the client requested https://my-server.com/dashboard and you are rendering the application on the server to respond to that request, options.url should be set to https://my-server.com/dashboard.

Now, on every HTTP request made as part of rendering the application on the server, Angular can correctly resolve the request URL to an absolute URL, using the provided options.url.

Useful scripts

Scripts Details
npm run dev:ssr
Similar to ng serve, which offers live reload during development, but uses server-side rendering. The application runs in watch mode and refreshes the browser after every change. This command is slower than the actual ng serve command.
ng build && ng run app-name:server
Builds both the server script and the application in production mode. Use this command when you want to build the project for deployment.
npm run serve:ssr
Starts the server script for serving the application locally with server-side rendering. It uses the build artifacts created by ng run build:ssr, so make sure you have run that command as well.
NOTE: serve:ssr is not intended to be used to serve your application in production, but only for testing the server-side rendered application locally.
npm run prerender
Used to prerender an application's pages. Read more about prerendering here.
Last reviewed on Wed Jun 21 2023

© 2010–2023 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://angular.io/guide/universal