Source: node-pixl-json-stream Section: javascript Maintainer: Debian Javascript Maintainers Uploaders: Joseph Nahmias , Testsuite: autopkgtest-pkg-nodejs Build-Depends: debhelper-compat (= 13), dh-nodejs, dh-sequence-nodejs, node-pixl-class , Standards-Version: 4.7.4 Homepage: https://github.com/jhuckaby/pixl-json-stream Vcs-Git: https://salsa.debian.org/js-team/node-pixl-json-stream.git Vcs-Browser: https://salsa.debian.org/js-team/node-pixl-json-stream Package: node-pixl-json-stream Architecture: all Depends: node-pixl-class, ${misc:Depends}, Description: send and receive JSON records over standard streams This module provides a convenient way to send/receive complex data objects over streams (pipes and sockets). It does this by transparently serializing the data to JSON, and parsing it on the other side, emitting a json event to your code whenever it has a complete JSON message. . The library handles all buffering for you, and so it will only emit one json event for each completed JSON document, pre-parsed into a data object for your callback. And for sending data, you can pass it a complex object, which will be auto-serialized and streamed over the pipe or socket. . Node.js is an event-based server-side JavaScript engine.