0.8.8 • Published 11 years ago

ql.io-engine v0.8.8

Weekly downloads
349
License
-
Repository
github
Last release
11 years ago

ql.io

ql.io is a declarative, data-retrieval and aggregation gateway for quickly consuming HTTP APIs. See ql.io for docs, demos and examples.

Travis status

How to Build ql.io

To build ql.io on your own, you need node (version 0.8.0 or later) and npm. In Ubuntu, you need libexpat-dev additionally. Once you have these set up, do the following:

git clone git://github.com/ql-io/ql.io.git
cd ql.io
make install

Note If you get "ERR! Error: EACCES, Permission denied" errors, please take a look at npm issue #194 and what-no-sudo.

These steps will link ql.io modules locally so can you refer to those modules from your apps using npm link.

To run tests

make test 

ql.io source is organized into several modules that you can test independently.

cd modules/engine
make test

Using ql.io as a Stand-Alone Server

If you are interested in using ql.io as a stand-alone server, setup a new ql.io app and start the server.

mkdir myapp
cd myapp
curl https://raw.github.com/ql-io/ql.io/master/modules/template/init.sh | bash
bin/start.sh

Using latest versions of Firefox or Chrome, go to http://localhost:3000 to see ql.io's Web Console. See the Quickstart Guide for more details.

Using ql.io in a Node App

If you are interested in using ql.io in your node app, use

npm install ql.io-engine

After that you can simply execute the core engine.

var Engine = require('ql.io-engine');
var engine = new Engine({
    connection: 'close'
});

var script = "create table geocoder " +
             "  on select get from 'http://maps.googleapis.com/maps/api/geocode/json?address={address}&sensor=true' " +
             "     resultset 'results.geometry.location'" +
             "select lat as lattitude, lng as longitude from geocoder where address='Mt. Everest'";

engine.execute(script, function(emitter) {
    emitter.on('end', function(err, res) {
        console.log(res.body[0]);
    });
});

Making Contributions

Fixes and features via pull requests are welcome as long as the contributor agrees to the Contributor License Agreement. Print, sign, and email a scanned copy to subbu/AT/ebaysf/DOT/com before submitting the first pull request.

To help move pull requests quickly, consider socializing your idea in the email group.

Discussions

Subscribe to the google group.

0.8.8

11 years ago

0.8.7

11 years ago

0.8.6a

11 years ago

0.8.5

11 years ago

0.8.4

12 years ago

0.7.5

12 years ago

0.8.3

12 years ago

0.7.4

12 years ago

0.8.2

12 years ago

0.8.1

12 years ago

0.8.0

12 years ago

0.7.3

12 years ago

0.7.2

12 years ago

0.7.0

12 years ago

0.6.11

12 years ago

0.6.10

12 years ago

0.6.9

12 years ago

0.6.8

12 years ago

0.6.7

12 years ago

0.6.6

12 years ago

0.6.5

12 years ago

0.6.4

12 years ago

0.6.3

12 years ago

0.6.2

12 years ago

0.6.1

12 years ago

0.6.0

12 years ago

0.5.23

12 years ago

0.5.22

12 years ago

0.5.21

12 years ago

0.5.20

12 years ago

0.5.18

12 years ago

0.5.17

12 years ago

0.5.16

12 years ago

0.5.15

12 years ago

0.5.14

12 years ago

0.5.13

12 years ago

0.5.12

12 years ago

0.5.11

12 years ago

0.5.10

12 years ago

0.5.9

12 years ago

0.5.8

12 years ago

0.5.7

12 years ago

0.5.6

12 years ago

0.5.4

12 years ago

0.5.3

12 years ago

0.5.2

12 years ago

0.5.0

12 years ago

0.4.28

12 years ago

0.4.27

12 years ago

0.4.25

12 years ago

0.4.24

12 years ago

0.4.23

12 years ago

0.4.22

12 years ago

0.4.20

12 years ago

0.4.19

12 years ago

0.4.18

12 years ago

0.4.16

12 years ago

0.4.15

12 years ago

0.4.14

12 years ago

0.4.13

12 years ago

0.4.12

12 years ago

0.4.11

12 years ago

0.4.10

12 years ago

0.4.9

12 years ago

0.4.7

12 years ago

0.4.6

12 years ago

0.4.2

12 years ago

0.3.17

12 years ago

0.4.0

12 years ago

0.4.0-beta.6

12 years ago

0.4.0-beta.2

12 years ago

0.4.0-beta.1

12 years ago

0.3.15

12 years ago

0.4.0-beta

12 years ago

0.3.14

12 years ago

0.3.13

12 years ago

0.3.12

12 years ago

0.3.11

12 years ago

0.3.9

12 years ago

0.3.8

12 years ago

0.3.7

12 years ago

0.3.5

12 years ago

0.3.4

12 years ago

0.3.3

12 years ago

0.3.2

12 years ago

0.3.1

12 years ago

0.3.0

12 years ago