Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ability to stream XML in chunks #3

Open
nikku opened this issue Nov 7, 2017 · 0 comments
Open

Add ability to stream XML in chunks #3

nikku opened this issue Nov 7, 2017 · 0 comments

Comments

@nikku
Copy link
Owner

nikku commented Nov 7, 2017

Implement Parser#write and Parser#close to enable streaming of XML nodes in chunks:

var parser = new Parser();

parser.on('openTag', ...);

// stream input data in chunks
parser
  .write('<xml>')
  .write('<child />')
  .write('</xml>')
  .close();

This allows the parser to handle huge XML documents in a memory efficient way. It allows for asynchronous step by step parsing, too.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant