Skip to content

Commit b7ed2b7

Browse files
committed
chore: update install commands
1 parent 11b6f10 commit b7ed2b7

File tree

2 files changed

+34
-6
lines changed

2 files changed

+34
-6
lines changed

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ Check out our current openings and apply via [Stream's website](https://getstrea
5555
Run this command if you are using **Angular 19**:
5656

5757
```shell
58-
# Some SDK depedencies doesn't yet have official support for Angular 19, so we need to add --force flag until then
59-
npm install stream-chat-angular stream-chat @ngx-translate/core@15 ngx-float-ui@18 --force
58+
npm install stream-chat-angular stream-chat @ngx-translate/core@15 ngx-float-ui@19
6059
```
6160

6261
Supported Angular versions: **Angular 15-18**

projects/stream-chat-angular/README.md

+33-4
Original file line numberDiff line numberDiff line change
@@ -51,16 +51,40 @@ Check out our current openings and apply via [Stream's website](https://getstrea
5151

5252
### Install with NPM
5353

54-
Run the following command if you are using **Angular 13**:
54+
Run this command if you are using **Angular 19**:
5555

5656
```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
5858
```
5959

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**:
6169

6270
```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+
6488
```
6589
6690
## Sample App
@@ -72,9 +96,11 @@ To test the app:
7296
Create a file named `.env` in the root directory with the following content:
7397
7498
```
99+
75100
STREAM_API_KEY=<Your API key>
76101
STREAM_USER_ID=<Your user ID>
77102
STREAM_USER_TOKEN=<Your user token>
103+
78104
```
79105
80106
Run `npm start` and navigate to `http://localhost:4200/`.
@@ -88,13 +114,16 @@ To run the app:
88114
Create a file named `.env` in the root directory with the following content:
89115
90116
```
117+
91118
STREAM_API_KEY=<Your API key>
92119
STREAM_USER_ID=<Your user ID>
93120
STREAM_USER_TOKEN=<Your user token>
121+
94122
```
95123
96124
Run `npm start:customizations-example` and navigate to `http://localhost:4200/`.
97125
98126
## Local development
99127
100128
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

Comments
 (0)