v2.0.0
Updates
- Feature: Listener wildcard pattern matching #31
Now it is possible to use the on function with pattern matching, for example:
osc.on('/*', message => {
console.log(message);
})
osc.on('/{foo,bar}/*/param', message => {
console.log(message);
})
Breaking changes
- Chore: Use
isomorphic-ws#33
Webpack users don't need to handle the library different anymore, it should work out of the box in Browsers now. WebsocketBrowserPlugin was removed.