We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 438fc15 commit 3cfcdebCopy full SHA for 3cfcdeb
examples/presence/.gitignore
@@ -1 +1,3 @@
1
node_modules/
2
+config.js
3
+
examples/presence/index.js
@@ -1,13 +1,14 @@
const colors = require('colors/safe');
const Nimvelo = require('../../lib');
4
+const CONFIG = require('./config');
5
6
const myCustomerId = 5;
7
8
// Enter your API credentials here
9
const nimvelo = new Nimvelo({
- username: 'myUsername',
10
- password: 'myPassword',
+ username: CONFIG.USERNAME,
11
+ password: CONFIG.PASSWORD,
12
});
13
14
// We'll use this to store the state of each extension
0 commit comments