thrift/lib/nodejs
Randy Abernethy d8187c5ff1 THRIFT-2976: add browserify support and tests
Client: nodejs
Patch: Andrew de Andrade
2015-02-16 01:25:53 -08:00
..
examples THRIFT-2768: Whitespace Fixup 2014-10-03 20:30:38 +02:00
lib/thrift THRIFT-2976: add browserify support and tests 2015-02-16 01:25:53 -08:00
test THRIFT-2976: add browserify support and tests 2015-02-16 01:25:53 -08:00
.gitignore THRIFT-2963: add code coverage to nodejs lib 2015-02-03 00:04:40 -08:00
coding_standards.md THRIFT-2724 - Coding standards template added all over project 2015-02-05 12:15:19 +01:00
Makefile.am THRIFT-2940 nodejs: move package.json to root folder 2015-02-03 23:45:21 +01:00
README.md THRIFT-2932: Node.js Thrift connection libraries throw Exceptions into event emitter 2015-02-04 13:18:53 -08:00

Thrift Node.js Library

License

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Install

npm install thrift 

Thrift Compiler

You can compile IDL sources for Node.js with the following command:

thrift --gen js:node thrift_file

Cassandra Client Example:

Here is a Cassandra example:

var thrift = require('thrift'),
    Cassandra = require('./gen-nodejs/Cassandra')
    ttypes = require('./gen-nodejs/cassandra_types');

var connection = thrift.createConnection("localhost", 9160),
    client = thrift.createClient(Cassandra, connection);

connection.on('error', function(err) {
  console.error(err);
});

client.get_slice("Keyspace", "key", new ttypes.ColumnParent({column_family: "ExampleCF"}), new ttypes.SlicePredicate({slice_range: new ttypes.SliceRange({start: '', finish: ''})}), ttypes.ConsistencyLevel.ONE, function(err, data) {
  if (err) {
    // handle err
  } else {
    // data == [ttypes.ColumnOrSuperColumn, ...]
  }
  connection.end();
});

Int64

Since JavaScript represents all numbers as doubles, int64 values cannot be accurately represented naturally. To solve this, int64 values in responses will be wrapped with Thirft.Int64 objects. The Int64 implementation used is broofa/node-int64.

Client and server examples

Several example clients and servers are included in the thrift/lib/nodejs/examples folder and the cross language tutorial thrift/tutorial/nodejs folder.