@ng-web-apis/universal
Version:
A set of fallback for @ng-web-apis/common for Angular Universal
56 lines (41 loc) • 2.24 kB
Markdown
#  Angular Universal fallbacks
[](https://npmjs.com/package/@ng-web-apis/universal)
[](https://bundlephobia.com/result?p=@ng-web-apis/universal)
[](https://codecov.io/github/taiga-family/ng-web-apis/tree/main/libs/universal)
A set of fallbacks to seamlessly use
[@ng-web-apis/common](https://github.com/taiga-family/ng-web-apis/tree/main/libs/common) in
[Angular Universal](https://github.com/angular/universal) apps. These packages have synced versions down to minor.
## How to use
Add constants imported from this package to providers of your `ServerAppModule`. Typically, you can also use these mocks
for tests. Idea of this package is — you shouldn't have to mock DOM on the server side or test `isPlatformBrowser` all
the time. Instead, you leverage Angular DI system to abstract from implementation. When possible, this package will
provide the same functionality on the server side as you have in browser. In other cases you will get type-safe mocks
and you can at least be sure you will not have `cannot read property of null` or `undefined is not a function` errors in
SSR.
## Tokens
You can import `UNIVERSAL_PROVIDERS` in the following manner:
```ts
const serverConfig: ApplicationConfig = {
providers: [
provideServerRendering(),
UNIVERSAL_PROVIDERS, // <-- add this
],
};
const config = mergeApplicationConfig(appConfig, serverConfig);
const bootstrap = () => bootstrapApplication(AppComponent, config);
```
## Special cases
When you use plain SSR without prerender you can retrieve some of the information from requests. Use the following
helpers to harvest that info:
**server.ts:**
```ts
import {provideLocation, provideUserAgent} from '@ng-web-apis/universal';
// ...
app.get('/**/*', (req: Request, res: Response) => {
res.render('../dist/index', {
req,
res,
providers: [provideLocation(req), provideUserAgent(req)],
});
});
```