Skip to content

fix(README): fixed install command #68

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: v3
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
# Qiscus Web SDK Core

This library contains core functionalities needed to create a chat application using qiscus.
This library contains core functionalities needed to create a chat application using qiscus.

Check out the V3 migration guide with Typescript details here: [V3 Migration Guide](https://github.com/qiscus/qiscus-sdk-web-core/blob/v3/MIGRATION_GUIDE.md)

## Installing

```
$ npm i qiscus-sdk-core
$ npm i qiscus-sdk-javascript
// or if you're using yarn
$ yarn add qiscus-sdk-core
$ yarn add qiscus-sdk-javascript
```

then you need to import this library into your application.

```
import QiscusSDK from 'qiscus-sdk-core';
import QiscusSDK from 'qiscus-sdk-javascript';

const qiscus = new QiscusSDK();
```
Expand Down