Skip to content

Commit c3f5e28

Browse files
authored
Rename node-librdkafka to confluent-kafka-js (#13)
1 parent 0bb262b commit c3f5e28

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

binding.gyp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"targets": [
88
{
9-
"target_name": "node-librdkafka",
9+
"target_name": "confluent-kafka-js",
1010
'sources': [
1111
'src/binding.cc',
1212
'src/callbacks.cc',

librdkafka.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
* of the MIT license. See the LICENSE.txt file for details.
88
*/
99

10-
var kafka = require('bindings')('node-librdkafka');
10+
var kafka = require('bindings')('confluent-kafka-js');
1111

1212
module.exports = kafka;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"test:types": "tsc -p ."
1515
},
1616
"binary": {
17-
"module_name": "node-librdkafka",
17+
"module_name": "confluent-kafka-js",
1818
"module_path": "./build/{configuration}/",
1919
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz",
2020
"host": "https://github.com/confluentinc/confluent-kafka-js/releases/download/",

test/binding.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* of the MIT license. See the LICENSE.txt file for details.
88
*/
99

10-
var addon = require('bindings')('node-librdkafka');
10+
var addon = require('bindings')('confluent-kafka-js');
1111
var t = require('assert');
1212

1313
var consumerConfig = {

test/consumer.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* of the MIT license. See the LICENSE.txt file for details.
88
*/
99

10-
var addon = require('bindings')('node-librdkafka');
10+
var addon = require('bindings')('confluent-kafka-js');
1111
var t = require('assert');
1212

1313
var client;

0 commit comments

Comments
 (0)