├── .gitignore ├── .jshintignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── AUTHORS ├── History.md ├── LICENSE ├── Makefile ├── README.md ├── benchmark ├── bench.js ├── get.js ├── keepalive_requests.js ├── parse.js └── parse_getrow_result.js ├── index.js ├── lib └── client.js ├── ots_protocol.desc ├── ots_protocol.proto ├── package.json └── test ├── client.test.js └── fixtures ├── getRow_request.pb ├── getRow_result.pb ├── getRow_result_empty.pb ├── ots-result.xml └── ots-result2.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | .tmp/ 4 | .git/ 5 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | .travis.yml 3 | coverage.html 4 | benchmark 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/AUTHORS -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/History.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/benchmark/bench.js -------------------------------------------------------------------------------- /benchmark/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/benchmark/get.js -------------------------------------------------------------------------------- /benchmark/keepalive_requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/benchmark/keepalive_requests.js -------------------------------------------------------------------------------- /benchmark/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/benchmark/parse.js -------------------------------------------------------------------------------- /benchmark/parse_getrow_result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/benchmark/parse_getrow_result.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/client'); -------------------------------------------------------------------------------- /lib/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/lib/client.js -------------------------------------------------------------------------------- /ots_protocol.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/ots_protocol.desc -------------------------------------------------------------------------------- /ots_protocol.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/ots_protocol.proto -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/package.json -------------------------------------------------------------------------------- /test/client.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/test/client.test.js -------------------------------------------------------------------------------- /test/fixtures/getRow_request.pb: -------------------------------------------------------------------------------- 1 | 2 | : 3 | testuser 4 | uid 5 | mk2not 6 | firstname 7 | yuanexists -------------------------------------------------------------------------------- /test/fixtures/getRow_result.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/test/fixtures/getRow_result.pb -------------------------------------------------------------------------------- /test/fixtures/getRow_result_empty.pb: -------------------------------------------------------------------------------- 1 | 2 | testuser -------------------------------------------------------------------------------- /test/fixtures/ots-result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/test/fixtures/ots-result.xml -------------------------------------------------------------------------------- /test/fixtures/ots-result2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-modules/ots/HEAD/test/fixtures/ots-result2.xml --------------------------------------------------------------------------------