Package Exports
- sdxfjs
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (sdxfjs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
sdxfjs
Structured Data Exchange Format (SDXF) RFC 3072 http://www.ietf.org/rfc/rfc3072.txt
var SDXF = require("sdxfjs"); var $ = { get_data: 1, info_str: 2 };
var s = { get_data : { info_str: "Information" } } var ser = new SDXF.Serialize($); var des = new SDXF.Deserialize($); ser.pipe(des); ser.write(s); ser.end(); des.on('data',_chunk); function _chunk(data) { console.log(data); }