Giter Site home page Giter Site logo

node-xml2object's Introduction

Node.js xml2object

Simple wrapper on the SAX.js parser to stream xml into JavaScript objects.

Converts xml elements into JavaScript objects.

Install

npm install xml2object

Usage

From A File Name

var xml2object = require('xml2object');

// Create a new xml parser with an array of xml elements to look for
var parser = new xml2object([ 'animal' ], 'myAnimals.xml');

// Bind to the object event to work with the objects found in the XML file
parser.on('object', function(name, obj) {
    console.log('Found an object: %s', name);
    console.log(obj);
});

// Bind to the file end event to tell when the file is done being streamed
parser.on('end', function() {
    console.log('Finished parsing xml!');
});

// Start parsing the XML
parser.start();

From An Input Stream

var xml2object = require('xml2object');
var source = fs.createReadStream('/path/to/file.xml');

// Create a new xml parser with an array of xml elements to look for
var parser = new xml2object([ 'animal' ], source);

// Bind to the object event to work with the objects found in the XML file
parser.on('object', function(name, obj) {
    console.log('Found an object: %s', name);
    console.log(obj);
});

// Bind to the file end event to tell when the file is done being streamed
parser.on('end', function() {
    console.log('Finished parsing xml!');
});

// Start parsing the input stream
parser.start();

Piped From An Input Stream

Note: The following example uses the request package to simplify the http request.

var xml2object = require('xml2object');
var request = require('request');

// Create a new xml parser with an array of xml elements to look for
var parser = new xml2object([ 'animal' ]);

// Bind to the object event to work with the objects found in the XML file
parser.on('object', function(name, obj) {
    console.log('Found an object: %s', name);
    console.log(obj);
});

// Bind to the file end event to tell when the file is done being streamed
parser.on('end', function() {
    console.log('Finished parsing xml!');
});

// Pipe a request into the parser
request.get('http://www.example.com/test.xml').pipe(parser.saxStream);

Module

xml2object(elements[, source])

Constructor for creating an instance of the xml parser.

The source argument is can be a path to an xml file or an input stream.

If no source is specified you can set a readable Stream to .source or pipe a Stream into the .saxStream.

var xml2object = require('xml2object');

// Parse the myAnimals.xml file looking for <animal> elements
var parser = new xml2object([ 'animal' ], 'myAnimals.xml');

.source

The input Stream used as a source for parsing. Can be set to a xml file path or a readable stream.

var parser = new xml2object([ 'animal' ]);

parser.source = 'myAnimals.xml';

.saxStream

The underlying sax Stream. Data can be piped directly to the sax Stream using the pipe().

.start()

Triggers the xml file to start streaming to the parser. Call this method after you have bound to the events.

// Start parsing the XML
parser.start();

Event: 'object'

function(name, obj) { ... }

Triggered when an object has been parsed from the XML file with the name of the element found and the actual object.

Event: 'end'

function() { ... }

Marks the end of the input file when it has been completely streamed through the parser.

Event: 'start'

function() { ... }

Marks the start of reading from the source. This event will not fire if using the .saxParser.pipe() method.

Other Notes

Elements being parsed cannot currently be nested. For example. if you have root > bikes > bike > wheel as a heirarchy and have done a xml2object('transportation.xml', [ 'bike', 'wheel' ]) the bike objects will be returned, but the wheel elements inside the bike element will not be parsed separately.

node-xml2object's People

Contributors

zoramite avatar evanderkoogh avatar

Watchers

James Cloos avatar

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.