Skip to content

avinoamr/json5stream

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

json5stream

Streaming json5 parsing

JSON5 is awesome!
Actually, some may disagree.

Similar to jsonstream, this library is a wrapper around the JSON5.parse function to support streaming data into the parser.

Usage

$ npm install json5stream
var json5stream = require( "json5stream" );

fs.createReadStream( "somefile.json5" )
  .pipe( json5stream() )
  .on( "data", function ( d ) {
      // do something with it.
  });

About

Streaming json5 parsing

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published