Skip to content

Commit 1fff262

Browse files
author
Paul Le Cam
committed
v0.3.0
1 parent 82d86c3 commit 1fff262

21 files changed

+8124
-3393
lines changed

.babelrc

Lines changed: 0 additions & 19 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v0.3.0 (2018-04-25)
2+
3+
* `.next()` now serializes the provided value to JSON.
4+
* Updated RxJS dependency to v6.
5+
* Added esm dependency for module support.
6+
17
## v0.2.0 (2018-02-23)
28

39
* Incoming data is now split using node's `os.EOL` separator to emit individual values.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# rx-socket
22

33
[RxJS Subject](http://reactivex.io/rxjs/class/es6/Subject.js~Subject.html) for
4-
[Node Socket](https://nodejs.org/dist/latest-v9.x/docs/api/net.html#net_class_net_socket).
4+
[Node Socket](https://nodejs.org/dist/latest-v10.x/docs/api/net.html#net_class_net_socket).
55

66
## Installation
77

@@ -21,8 +21,8 @@ socket.subscribe(data => {
2121
console.log(data)
2222
})
2323

24-
// `next()` expects a string by default
25-
socket.next(JSON.stringify({ hello: 'world' }))
24+
// `next()` will encode the provided value to JSON
25+
socket.next({ hello: 'world' })
2626
```
2727

2828
See the

flow-typed/npm/babel-cli_vx.x.x.js

Lines changed: 0 additions & 108 deletions
This file was deleted.

flow-typed/npm/babel-core_vx.x.x.js

Lines changed: 0 additions & 227 deletions
This file was deleted.

0 commit comments

Comments
 (0)