You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+61-1Lines changed: 61 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,67 @@ One of the biggest, yet relatively unknown performance boosts you will get with
10
10
11
11
Working demo https://plnkr.co/edit/OgvZ09iYO64VoXHLRGQa?p=preview
12
12
13
+
## Table of contents:
14
+
-[Get Started](#get-started)
15
+
-[Installation](#installation)
16
+
-[Examples](#examples)
17
+
-[Usage](#usage)
18
+
-[angular-quickstart](#quickstart)
19
+
-[angular-seed](#seed)
13
20
14
-
```language-javascript
21
+
## <aname="get-started"></a> Get Started
22
+
23
+
### <aname="installation"></a> Installation
24
+
25
+
You can install this package locally with npm.
26
+
27
+
```bash
15
28
npm install ngx-http-batcher --save
16
29
```
30
+
31
+
### <aname="examples"></a> Examples
32
+
You can see a working Plunker here https://plnkr.co/edit/OgvZ09iYO64VoXHLRGQa?p=preview
33
+
There isn't much too visually see but you will want to open up the network tab on the dev tools and look for a request will '$batch'. This the the actual batch request for 3 seperate normal http requests.
34
+
35
+
### <aname="usage"></a> Usage
36
+
`NgxHttpBatcherModule` should be registered in the `AppModule` imports. This module relies on the Angular HttpModule so ensure that is also imported.
0 commit comments