Giter Site home page Giter Site logo

node-libxml's Introduction

node-libxml

node-libxml is a W3C-DOM XML Library for NodeJS with XPath and namespace support. It is implemented using the C based LibXML2 and the Ajax.org O3 component system. This is the only W3C-DOM standards based XML api for NodeJS we are aware of so your code should work in both the browser and nodejs. This project is used in production in many NodeJS based backend projects at Ajax.org.

Installation

To use this library simply install it using npm:

npm install libxml

Example

var xml = require("libxml");
var xmlData = "\
<?xml version=\"1.0\"?>\n\
<catalog>\n\
   <book id=\"bk101\" available=\"true\">\n\
      <author>Gambardella, Matthew</author>\n\
      <title>XML Developer's Guide</title>\n\
      <genre>Computer</genre>\n\
      <price>44.95</price>\n\
      <publish_date>2000-10-01</publish_date>\n\
      <description>An in-depth look at creating applications \n\
      with XML.</description>\n\
   </book>\n\
</catalog>";

var doc = xml.parseFromString(xmlData);
console.log("parsed document:\n" + doc.xml);

var xpathNodeList = elem.selectNodes("descendant-or-self::node()[@available='true']");
console.log("first element of the xpath querry: " + xpathNodeList[0].getAttribute("id"));

Continuous Integration status

This project is tested with Travis CI Build Status

Contributing

If you want to contribute to the source, please look at the main o3 repository.

node-libxml's People

Contributors

fjakobs avatar mikedeboer avatar gjtorikian avatar bnoordhuis avatar piscisaureus avatar

Watchers

James Cloos avatar van avatar  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.