json-header
v0.1.4
Published
If a message starts with JSON, the JSON is parsed and returned as the header, and the body is returned as everything after the JSON.
Downloads
3
Readme
json-header
A simple protocol and script that interprets a document as consisting of a json header and a body. Use the parseStr function to parse a document into the header and body.
Example node session:
> jh=require('./index.js');
{ parseStr: [Function] }
> jh.parseStr('{"key":"value","date":"2013-07-10 CST"}body of the document');
{ header:
{ key: 'value',
date: 'Wed Jul 10 2013 14:35:03 GMT-0500 (CDT)' },
body: 'body of the document' }