summaryrefslogtreecommitdiff
path: root/op_crates/websocket/01_websocket.js
AgeCommit message (Collapse)Author
2021-04-30Rename crate_ops to extensions (#10431)Andy Hayden
2021-04-30refactor(websocket): use ZeroCopyBuf to return binary data (#10446)crowlKats
2021-04-23fix: parse websocket messages correctly (#10318)Luca Casonato
2021-04-19refactor(op_crates/websocket): use Serialize for return values (#10220)crowlKats
2021-04-12refactor(deno): remove concept of bin & json ops (#10145)Aaron O'Mullan
2021-04-05refactor: convert ops to use serde_v8 (#10009)Aaron O'Mullan
This commit rewrites most of the ops to use "serde_v8" instead of "json" serialization.
2021-04-02fix(websocket): ignore resource close error (#9755)Luca Casonato
It is possible that the WebSocket is already closed when we try to close it with `WebSocket#close` or in the `error` or `close` events. Currently this leads to an uncatchable promise rejection. This changes this so that closing an already closed WebSocket is a noop.
2021-02-21fix(op_crates/websocket): default to close code 1005 (#9339)DjDeveloper
Currently if WebSocket is closed without code, it will error while on Chrome it would close with code 1005 instead. Co-authored-by: crowlKats <13135287+crowlKats@users.noreply.github.com>
2021-02-12fix(cli): fix WebSocket close (#8776)Preta Crowz
Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
2021-02-04chore: use strict mode for internal runtime, core, and op_crates js (#9391)Developing
2021-01-11chore: update copyright to 2021 (#9092)Yusuke Tanaka
2021-01-10refactor(op_crates/websocket): refactor event loop (#9079)crowlKats
2021-01-06refactor: move WebSocket API to an op_crate (#9026)Luca Casonato