Giter Club home page Giter Club logo

node-exist's Introduction

node-exist

Description

eXist-db REST API wrapper

http://exist-db.org/devguide_rest.html

Simple usage

XQuery

var exist = require('exist');

var q = '
  <results>
  {
      for $e in document("orga/events.xml")//event[
          @refgrp = "G1" 
          and from >= "2011-02-12 12:00" 
          and to <= "2011-02-13"]
      return
      <event>
          {$e/@*}
          {$e/title}
          {$e/from}
          {$e/to}
          {$e/location}
      </event>
  }
  </results>';

exist.xquery(q, function (r) {
  for(e in r.results.event)
    console.log(e);
});

JSON to XML

var obj = {
    event: {
        '@': {foo: 'bar'},
        bonjour: {
            en: 'hello',
            ko: 'annyung',
        },
        love: 'hate'
    }
};

require('exist').json2xml(obj)

This will return:

'<event foo="bar"><bonjour><en>hello</en><ko>annyung</ko></bonjour><love>hate</love></event>'

Installation

git clone this
cd this
npm link

or (not yet)

npm install exist

Dependencies

  • xml2json
  • node-unit for testing

node-exist's People

Contributors

blandinw avatar

Stargazers

Samuel Bishop avatar Florent Jaby avatar

Watchers

Florent Jaby avatar James Cloos avatar Samuel Bishop 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.