Giter Site home page Giter Site logo

xtao-org / jsonhilo Goto Github PK

View Code? Open in Web Editor NEW
27.0 1.0 3.0 308 KB

Fast lossless JSON parse event streaming, in JavaScript.

License: MIT License

JavaScript 100.00%
json streaming parser tao lossless javascript zero-dependency minimal modular fast

jsonhilo's People

Contributors

djedr avatar rafern avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

jsonhilo's Issues

End not working, does not work with require, and not performant.

End does not seem to work, and performance is not what I expected.

I'm sure I'm doing something wrong

I am reading in a string that is an array, i need to separate the string by the array elements and pass it on. I was using JSON.parse but thought I'd give a SAX like event based parser a try.

Also this doesn't seem to work with require

I get
Instead change the require of mod.js in /home/iklotzko/monorepo/packages/common/lib/utils.js to a dynamic import() which is available in all CommonJS modules.


/** I'm using an await import in my requires **/
JsonHigh.then((jh) => {
			if (this.parsing) {
				return;
			}
			this.parsing = true;
			let c = [];
			let level = 0;
			let start2 = hrtime.bigint();
			const stream = jh({
				openArray: () => {
					level++;
					if (level === 1) {
						c = arguments['0'];
					}
					return true;

				},
				closeArray: () => {
					recordStat('JsonHighLow', start2);
					level--;
					if (level === 0) {
						if (`[${c.join(',')}]` != JSON.stringify(b)) {
							console.log(`c is not equal`);
						}
						this.parsing = false;
						return stream.end();
					}
				}
			});
			stream.chunk(buf.toString());
			stream.end(() => {
				console.log(`ended FINALLY`);
			})
		});

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.