1.0.7 • Published 7 years ago

clickhouse_client v1.0.7

Weekly downloads
9
License
ISC
Repository
github
Last release
7 years ago
const ClickHouseClient = require('clickhouse_client');

let clickhouseClient = new ClickHouseClient({
	host: "localhost",
	port: 8123,
	dbname: "database"
});

clickhouseClient.find('SELECT * FROM table_name LIMIT 10', (err, data) => {
	if (err) {
		return console.log(err);
	}

	console.log({data});
});
1.0.7

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago