Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit d6c4af7

Browse files
cyrilletuziMarkPieszak
authored andcommitted
(docs) update README with correct package name (#700)
1 parent f0c6870 commit d6c4af7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

modules/ng-express-engine/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ This is an Express Engine for running Angular Apps on the server for server side
44

55
## Usage
66

7+
`npm install @nguniversal/express-engine --save`
8+
79
To use it, set the engine and then route requests to it
810

911
```ts
1012
import * as express from 'express';
11-
import { ngExpressEngine } from '@universal/ng-express-engine';
13+
import { ngExpressEngine } from '@nguniversal/express-engine';
1214

1315
// Set the engine
1416
app.engine('html', ngExpressEngine({
@@ -60,7 +62,7 @@ You can access them by @Inject
6062

6163
```ts
6264
import { Request } from 'express';
63-
import { REQUEST } from '@universal/ng-express-engine';
65+
import { REQUEST } from '@nguniversal/express-engine';
6466

6567
@Injectable()
6668
export class RequestService {

0 commit comments

Comments
 (0)