Skip to content

We provide the NodeJS Server Software free of charge to use on your own server to be able to host live collaborations on B4D.

Notifications You must be signed in to change notification settings

Blockly-For-Discord/b4d-collab-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 

Repository files navigation

NodeJS Server Software

While multiple people can work on a project at the same time, you won't see their changes till another user leaves the project. Therefore as a much cleaner solution we provide a software to enable live collaboration to be able to see the changes other people make LIVE as you code allowing for a much smoother experience.

Installation

  1. Download the Software from our releases, and unzip the files onto your NodeJS Server. In your Index.js file write this:
const b4d = require('./software.js');


b4d.server(config);

var config = {
  "port": 8080,
  "password": "",
  "allowedUsers": ["@user1"],
  "blacklist": ["@user2", "127.0.0.1"] 
}
  1. Start the server

Config

setting description
port The port to listen to
password (optional) You can add a password so only people with the password can enter
allowedUsers An array of people that are allowed to start live collaborations on your server. Leave empty for anyone
blacklist People that are blacklisted from starting a collaboration or joining one (can be an ip)

About

We provide the NodeJS Server Software free of charge to use on your own server to be able to host live collaborations on B4D.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published