@@ -51,16 +51,40 @@ Check out our current openings and apply via [Stream's website](https://getstrea
51
51
52
52
### Install with NPM
53
53
54
- Run the following command if you are using ** Angular 13 ** :
54
+ Run this command if you are using ** Angular 19 ** :
55
55
56
56
``` shell
57
- npm install stream-chat-angular stream-chat @ngx-translate/core
57
+ npm install stream-chat-angular stream-chat @ngx-translate/core@15 ngx-float-ui@19
58
58
```
59
59
60
- Run this command if you are using ** Angular 12** :
60
+ Supported Angular versions: ** Angular 15-18**
61
+
62
+ Run this command if you are using ** Angular 18** :
63
+
64
+ ``` shell
65
+ npm install stream-chat-angular stream-chat ngx-float-ui@18
66
+ ```
67
+
68
+ Run this command if you are using ** Angular 17** :
61
69
62
70
``` shell
63
- npm install stream-chat-angular stream-chat@5 @ngx-translate/core --legacy-peer-deps
71
+ npm install stream-chat-angular stream-chat ngx-float-ui@17
72
+ ```
73
+
74
+ Run this command if you are using ** Angular 16** :
75
+
76
+ ``` shell
77
+ npm install stream-chat-angular stream-chat ngx-float-ui@16
78
+ ```
79
+
80
+ Run this command if you are using ** Angular 15** :
81
+
82
+ ``` shell
83
+ npm install stream-chat-angular stream-chat @ngx-translate/core@14 ngx-float-ui@15
84
+ ```
85
+
86
+ Supported node verisons: 18+
87
+
64
88
```
65
89
66
90
## Sample App
@@ -72,9 +96,11 @@ To test the app:
72
96
Create a file named `.env` in the root directory with the following content:
73
97
74
98
```
99
+
75
100
STREAM_API_KEY=<Your API key >
76
101
STREAM_USER_ID=<Your user ID >
77
102
STREAM_USER_TOKEN=<Your user token >
103
+
78
104
```
79
105
80
106
Run `npm start` and navigate to `http://localhost:4200/`.
@@ -88,13 +114,16 @@ To run the app:
88
114
Create a file named `.env` in the root directory with the following content:
89
115
90
116
```
117
+
91
118
STREAM_API_KEY=<Your API key >
92
119
STREAM_USER_ID=<Your user ID >
93
120
STREAM_USER_TOKEN=<Your user token >
121
+
94
122
```
95
123
96
124
Run `npm start:customizations-example` and navigate to `http://localhost:4200/`.
97
125
98
126
## Local development
99
127
100
128
Run `npm install` in the root of the project. You can use the `npm run start:dev` command to start the SampleApp with automatic reloading.
129
+ ```
0 commit comments