Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ You can access the Kuzzle repository on [Github](https://github.com/kuzzleio/kuz
* [Basic usage](#basic-usage-js)
* [Building manually](#building-manually)
* [Migrating from SDK v1.x](#migrating-from-sdk-v1.x)
* [Note](#note)
* [License](#license)

## SDK Documentation
Expand Down Expand Up @@ -139,6 +140,10 @@ kuzzle

* Kuzzle constructor has been changed. Instead of an URL, you have to provide a resolvable server name, or an IP address. If you need to specify a port different than the provided default value, you can do so using the `port` option.

## Note

* bufferutil and utf-8-validate have been moved to peerDependencies

## License

[Apache 2](LICENSE.md)
6 changes: 3 additions & 3 deletions dist/kuzzle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/kuzzle.js.map

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,14 @@
"license": "Apache-2.0",
"dependencies": {
"bluebird": "3.4.7",
"bufferutil": "^2.0.1",
"eslint-loader": "^1.6.1",
"utf-8-validate": "^3.0.1",
"uuid": "3.0.1",
"ws": "^2.0.3"
},
"peerDependencies": {
"bufferutil": "^2.0.1",
"utf-8-validate": "^3.0.1"
},
"devDependencies": {
"codecov": "^1.0.1",
"eslint": "^3.15.0",
Expand Down