@@ -10,7 +10,7 @@ A BigBlueButton's server and API's secret
1010
1111** IMPORTANT** : do not run this lib with ` root ` privileges
1212
13- ` npm i bigbluebot `
13+ ` npm i @mconf/ bigbluebot `
1414
1515` cp node_modules/bigbluebot/.env.template .env `
1616
@@ -83,7 +83,7 @@ Create your script, e.g. `run.js`:
8383Join audio with microphone
8484
8585``` js
86- const bigbluebot = require (' bigbluebot' );
86+ const bigbluebot = require (' @mconf/ bigbluebot' );
8787
8888const actions = async page => {
8989 await bigbluebot .audio .modal .microphone (page);
@@ -95,7 +95,7 @@ bigbluebot.run(actions);
9595Join audio as a listener
9696
9797``` js
98- const bigbluebot = require (' bigbluebot' );
98+ const bigbluebot = require (' @mconf/ bigbluebot' );
9999
100100const actions = async page => {
101101 await bigbluebot .audio .modal .listen (page);
@@ -107,7 +107,7 @@ bigbluebot.run(actions);
107107Join video
108108
109109``` js
110- const bigbluebot = require (' bigbluebot' );
110+ const bigbluebot = require (' @mconf/ bigbluebot' );
111111
112112const actions = async page => {
113113 await bigbluebot .video .join (page);
@@ -119,7 +119,7 @@ bigbluebot.run(actions);
119119Write in chat
120120
121121``` js
122- const bigbluebot = require (' bigbluebot' );
122+ const bigbluebot = require (' @mconf/ bigbluebot' );
123123
124124const actions = async page => {
125125 await bigbluebot .chat .send (page);
@@ -133,7 +133,7 @@ bigbluebot.run(actions);
133133You can pass options as a run parameter
134134
135135``` js
136- const bigbluebot = require (' bigbluebot' );
136+ const bigbluebot = require (' @mconf/ bigbluebot' );
137137
138138const actions = async page => {
139139 await bigbluebot .audio .modal .microphone (page);
0 commit comments