Skip to content

Commit 38462fa

Browse files
committed
Rebrand to Krenalis
1 parent 31f7700 commit 38462fa

6 files changed

Lines changed: 18 additions & 18 deletions

File tree

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing
22

3-
This file contains information useful for contributing to the Meergo Node.js SDK.
3+
This file contains information useful for contributing to the Krenalis Node.js SDK.
44

55
## Testing the SDK
66

@@ -32,9 +32,9 @@ To run the sample application:
3232
npm install
3333
```
3434
35-
1. In `sample.js`, set the `WRITE_KEY` and `ENDPOINT` constants using values from a Meergo Node.js source.
35+
1. In `sample.js`, set the `WRITE_KEY` and `ENDPOINT` constants using values from a Krenalis Node.js source.
3636
37-
1. If you are running the sample against a local Meergo server with a self-signed certificate, the sample application needs to trust the certificate authority (CA). For this purpose, before running the application:
37+
1. If you are running the sample against a local Krenalis server with a self-signed certificate, the sample application needs to trust the certificate authority (CA). For this purpose, before running the application:
3838
3939
- **Option 1: Set the `CA_PATH` environment variable** to point to the root CA used by mkcert or any other self-signed certificate authority. For example, on Linux/macOS:
4040
@@ -60,4 +60,4 @@ To run the sample application:
6060
node sample/sample.js
6161
```
6262
63-
1. You should see new logged events in the event debugger of the Meergo Node.js source.
63+
1. You should see new logged events in the event debugger of the Krenalis Node.js source.

README.MD

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# Meergo Node.js SDK
1+
# Krenalis Node.js SDK
22

3-
The Meergo Node.js SDK lets you send customer event data from your Node applications to your specified destinations.
3+
The Krenalis Node.js SDK lets you send customer event data from your Node applications to your specified destinations.
44

55
## SDK setup requirements
66

7-
- Set up a Meergo account.
7+
- Set up a Krenalis account.
88
- Set up a Node source in the dashboard.
99
- Copy the event write key and the endpoint.
1010

1111
## Using the SDK
1212

1313
```js
14-
import Analytics from '@meergo/nodejs-sdk';
14+
import Analytics from '@krenalis/nodejs-sdk';
1515

1616
const client = new Analytics('<event write key>', '<endpoint>');
1717

@@ -29,11 +29,11 @@ client.track({
2929

3030
## Sending events
3131

32-
Refer to the Meergo events documentation for more information on the supported event types.
32+
Refer to the Krenalis events documentation for more information on the supported event types.
3333

3434
## License
3535

36-
The Meergo Node.js SDK is released under the [MIT license](License.md).
36+
The Krenalis Node.js SDK is released under the [MIT license](License.md).
3737

3838
Copyright &copy; 2026 Open2b
3939

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const noop = () => {}
1515

1616
class Analytics {
1717
/**
18-
* Initialize a new `Analytics` with your Meergo `writeKey` and
18+
* Initialize a new `Analytics` with your Krenalis `writeKey` and
1919
* `endpoint` and an optional dictionary of `options`.
2020
*
2121
* @param {String} writeKey
@@ -34,7 +34,7 @@ class Analytics {
3434
constructor (writeKey, endpoint, options) {
3535
options = options || {}
3636

37-
assert(writeKey, 'You must pass your Meergo write key.')
37+
assert(writeKey, 'You must pass your Krenalis write key.')
3838

3939
this.queue = []
4040
this.writeKey = writeKey

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "@meergo/nodejs-sdk",
2+
"name": "@krenalis/nodejs-sdk",
33
"version": "0.0.2",
4-
"description": "Node.js SDK for sending events to the Meergo Customer Data Platform (CDP)",
4+
"description": "Node.js SDK for sending events to the Krenalis Customer Data Platform (CDP)",
55
"main": "index.cjs",
66
"exports": {
77
"require": "./index.cjs",
@@ -38,7 +38,7 @@
3838
"license": "MIT",
3939
"repository": {
4040
"type": "git",
41-
"url": "git+https://github.com/meergo/analytics-nodejs.git"
41+
"url": "git+https://github.com/krenalis/analytics-nodejs.git"
4242
},
4343
"publishConfig": {
4444
"access": "public"

test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ test('expose a constructor', t => {
100100
})
101101

102102
test('require a write key', t => {
103-
t.throws(() => new Analytics(), { message: 'You must pass your Meergo write key.' })
103+
t.throws(() => new Analytics(), { message: 'You must pass your Krenalis write key.' })
104104
})
105105

106106
test('create a queue', t => {

0 commit comments

Comments
 (0)