Hello world

suggest change

For accessing Cassandra cassandra-driver module from DataStax can be used. It supports all the features and can be easily configured.

const cassandra = require("cassandra-driver");
const clientOptions = {
    contactPoints: ["host1", "host2"],
    keyspace: "test"
};

const client = new cassandra.Client(clientOptions);

const query = "SELECT hello FROM world WHERE name = ?";
client.execute(query, ["John"], (err, results) => {
    if (err) {
      return console.error(err);
    }

    console.log(results.rows);
});

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Cassandra integration:
* Hello world

Table Of Contents
1 npm
37 Cassandra integration
41 cli
43 grunt
59 Hack
64 ES6
67 Redis
69 MongoDB
86 MongoDB
87 Lodash
91 CORS
105 N-API
108 Require