Skip to content

Commit 878ffc8

Browse files
committed
naming update
1 parent d087b8b commit 878ffc8

File tree

5 files changed

+116
-321
lines changed

5 files changed

+116
-321
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@
219219

220220
- Improved stability.
221221
- Minor bug fixed.
222-
- Updated SendBird.d.ts file for TypeScript.
222+
- Updated `SendBird.d.ts` file for TypeScript.
223223

224224
## v3.0.93(JAN 17, 2019)
225225

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
[![npm](https://img.shields.io/npm/v/sendbird.svg?style=popout&colorB=red)](https://www.npmjs.com/package/sendbird)
22

3-
# SendBird JavaScript SDK
3+
# Sendbird JavaScript SDK
44

5-
[SendBird](https://sendbird.com) provides the chat API and SDK for your app enabling real-time communication among your users.
5+
[Sendbird](https://sendbird.com) provides the chat API and SDK for your app enabling real-time communication among your users.
66

77
# Getting Started
88

9-
[bower](http://bower.io) package for [SendBird](https://sendbird.com) JavaScript SDK
9+
[bower](http://bower.io) package for [Sendbird](https://sendbird.com) JavaScript SDK
1010

1111
bower install sendbird
1212

13-
[npm](https://www.npmjs.com/package/sendbird) module for [SendBird](https://sendbird.com) JavaScript SDK
13+
[npm](https://www.npmjs.com/package/sendbird) module for [Sendbird](https://sendbird.com) JavaScript SDK
1414

1515
npm install sendbird --save
1616

17-
[Download](https://github.com/sendbird/SendBird-SDK-JavaScript) for [SendBird](https://sendbird.com) JavaScript SDK if you wish to use it without a package manager.
17+
[Download](https://github.com/sendbird/Sendbird-SDK-JavaScript) for [Sendbird](https://sendbird.com) JavaScript SDK if you wish to use it without a package manager.
1818

19-
> NOTICE! You should also add [axios](https://github.com/axios/axios) library into the `script` tag before the SendBird library inclusion since `v3.0.127`. You can host the library by your own, or utilize the CDN as the library refers to it. The below is an example.
19+
> NOTICE! You should also add [axios](https://github.com/axios/axios) library into the `script` tag before the Sendbird library inclusion since `v3.0.127`. You can host the library by your own, or utilize the CDN as the library refers to it. The below is an example.
2020
2121
```html
2222
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
23-
<script src="/your-own-path-to-sendbird/SendBird.min.js"></script>
23+
<script src="/your-own-path-to-sendbird/Sendbird.min.js"></script>
2424
```
2525

2626
# TypeScript
@@ -33,33 +33,33 @@ var sb = new SendBird({ appId: "APP_ID" });
3333
// do something...
3434
```
3535

36-
If you have trouble importing `SendBird`, please check your `tsconfig.json` file and change the value of `"allowSyntheticDefaultImports"` to `true` in `compilerOptions`.
36+
If you have trouble importing `Sendbird`, please check your `tsconfig.json` file and change the value of `"allowSyntheticDefaultImports"` to `true` in `compilerOptions`.
3737

38-
# [Sample](https://github.com/sendbird/SendBird-JavaScript)
38+
# [Sample](https://github.com/sendbird/Sendbird-JavaScript)
3939

40-
- [Basic Sample](https://sample.sendbird.com/basic) using [Sendbird SDK](https://github.com/sendbird/SendBird-SDK-JavaScript). [download](https://github.com/sendbird/SendBird-JavaScript/tree/master/web-sample)
41-
- [Widget Sample](https://sample.sendbird.com/widget) using [Sendbird SDK](https://github.com/sendbird/SendBird-SDK-JavaScript). [download](https://github.com/sendbird/SendBird-JavaScript/tree/master/web-widget)
42-
- [LiveChat Sample](https://sample.sendbird.com/livechat) using [Sendbird SDK](https://github.com/sendbird/SendBird-SDK-JavaScript). [download](https://github.com/sendbird/SendBird-JavaScript/tree/master/web-live-chat)
40+
- [Basic Sample](https://sample.sendbird.com/basic) using [Sendbird SDK](https://github.com/sendbird/Sendbird-SDK-JavaScript). [download](https://github.com/sendbird/Sendbird-JavaScript/tree/master/web-sample)
41+
- [Widget Sample](https://sample.sendbird.com/widget) using [Sendbird SDK](https://github.com/sendbird/Sendbird-SDK-JavaScript). [download](https://github.com/sendbird/Sendbird-JavaScript/tree/master/web-widget)
42+
- [LiveChat Sample](https://sample.sendbird.com/livechat) using [Sendbird SDK](https://github.com/sendbird/Sendbird-SDK-JavaScript). [download](https://github.com/sendbird/Sendbird-JavaScript/tree/master/web-live-chat)
4343

4444
## SyncManager
4545

46-
`SyncManager` is a support add-on for [SendBird SDK](https://github.com/sendbird/SendBird-SDK-JavaScript). Major benefits of `SyncManager` are,
46+
`SyncManager` is a support add-on for [Sendbird SDK](https://github.com/sendbird/Sendbird-SDK-JavaScript). Major benefits of `SyncManager` are,
4747

4848
- Local cache integrated: store channel/message data in local storage for fast view loading.
4949
- Event-driven data handling: subscribe channel/message event like `insert`, `update`, `remove` at a single spot in order to apply data event to view.
5050

51-
Check out [Basic Sample with SyncManager](https://github.com/sendbird/SendBird-JavaScript/tree/master/web-basic-sample-syncmanager) which is similar to [Basic Sample](https://sample.sendbird.com/basic) but `SyncManager` integrated. For more information about `SyncManager`, please refer to [SyncManager README](https://github.com/sendbird/sendbird-syncmanager-javascript/blob/master/README.md).
51+
Check out [Basic Sample with SyncManager](https://github.com/sendbird/Sendbird-JavaScript/tree/master/web-basic-sample-syncmanager) which is similar to [Basic Sample](https://sample.sendbird.com/basic) but `SyncManager` integrated. For more information about `SyncManager`, please refer to [SyncManager README](https://github.com/sendbird/sendbird-syncmanager-javascript/blob/master/README.md).
5252

5353
# [Documentation](https://docs.sendbird.com/javascript)
5454

5555
## v3.0.131(AUG 7, 2020)
5656

57-
If you want to check the record of other version, go to [Change Log](https://github.com/sendbird/SendBird-SDK-JavaScript/blob/master/CHANGELOG.md).
57+
If you want to check the record of other version, go to [Change Log](https://github.com/sendbird/Sendbird-SDK-JavaScript/blob/master/CHANGELOG.md).
5858

5959
- Fixed duplicated `appInfo` in `SendBird.d.ts`.
6060

61-
## [Change Log](https://github.com/sendbird/SendBird-SDK-JavaScript/blob/master/CHANGELOG.md)
61+
## [Change Log](https://github.com/sendbird/Sendbird-SDK-JavaScript/blob/master/CHANGELOG.md)
6262

6363
## License
6464

65-
[SendBird License](https://github.com/sendbird/SendBird-SDK-JavaScript/blob/master/LICENSE.md)
65+
[Sendbird License](https://github.com/sendbird/Sendbird-SDK-JavaScript/blob/master/LICENSE.md)

0 commit comments

Comments
 (0)