Minecraft NodeBB Integration mod 2026 download
logo
minecraft mod NodeBB Integration

NodeBB Integration

Game Version: 1.8.1
Total Downloads: 1,584
Updated: Dec 26, 2015
Created: Jul 21, 2015
Download NodeBB IntegrationDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
NodeBB Integration 0.6.2 release 1.27 MB Dec 26, 2015 1.8.1 288 download NodeBB Integration NodeBB Integration 0.6.2 releaseDownload
NodeBB Integration 0.6.1 release 1.27 MB Dec 17, 2015 1.8.1 198 download NodeBB Integration NodeBB Integration 0.6.1 releaseDownload
nodebb-integration-0.6.0.jar release 1.27 MB Dec 2, 2015 1.8.1 152 download NodeBB Integration nodebb-integration-0.6.0.jar releaseDownload
NodeBB Integration 0.7.0-beta.5 beta 1.30 MB Mar 3, 2016 1.8.1 216 download NodeBB Integration NodeBB Integration 0.7.0-beta.5 betaDownload
NodeBB Integration 0.7.0-beta.3 beta 1.28 MB Feb 17, 2016 1.8.1 153 download NodeBB Integration NodeBB Integration 0.7.0-beta.3 betaDownload
NodeBB Integration 0.7.0-beta.2 beta 1.28 MB Feb 16, 2016 1.8.1 115 download NodeBB Integration NodeBB Integration 0.7.0-beta.2 betaDownload
NodeBB Integration 0.7.0-beta beta 1.28 MB Jan 28, 2016 1.8.1 143 download NodeBB Integration NodeBB Integration 0.7.0-beta betaDownload
nodebb-integration-0.2.0.jar beta 856.02 KB Oct 3, 2015 1.8 156 download NodeBB Integration nodebb-integration-0.2.0.jar betaDownload
NodeBB Integration 0.8.0 Alpha 10 alpha 759.75 KB Dec 20, 2016 1.11 82 download NodeBB Integration NodeBB Integration 0.8.0 Alpha 10 alphaDownload
nodebb-integration-0.0.1.jar alpha 1.50 MB Jul 21, 2015 1.8 81 download NodeBB Integration nodebb-integration-0.0.1.jar alphaDownload

Description

Share this:

NodeBB Integration

This Bukkit plugin is a companion app for Minecraft Integration, a NodeBB forum plugin. It establishes a WebSocket connection to the forum which allows communication between the forum and your Minecraft server. This allows information on your Minecraft server and players to be displayed on your forum via widgets, user profiles, posts, shoutboxes, etc.. Your forum can also send events back to the server such as posts, messages, awards, groups. The plugin is a WebSocket client only and exposes it's API only to the Minecraft Integration plugin. The WebSocket client is run asynchronously to prevent network lag from interfering with normal server processes. If your forum uses a secure connection, this plugin's connection will be secure as well.

What is NodeBB?

Form the NodeBB Docs:

NodeBB logo

NodeBB is a next-generation discussion platform that utilizes web sockets for instant interactions and real-time notifications. NodeBB forums have many modern features out of the box such as social network integration and streaming discussions.

What does the NodeBB Integration plugin do?

NodeBB Integration sends socket events to your forum when a Bukkit event occurs. The forum listens for these events and displays relevant information to forum users.

  • Display server info such as online time, plugins, mods, and online players, updated in real-time.
  • Show rankings such as most money, playtime, or McMMO skills on your forum, also updated in real-time.
  • Synchronize server chat and forum shoutboxes.
  • Synchronize server ranks with forum group membership.
  • Apply ranks to Minecraft players based on Forum usage. (Posts, reputation, etc..)

Plugin Configuration

After placing the NodeBB Integration jar into your plugins folder and restarting your Minecraft server, a config.yml will be created in the folder plugins/NodeBB_Integration with the following options:

FORUMURL The web address of the forum the plugin is connecting to. e.g., https://community.example.com/. Can use color codes with '&'.
FORUMNAME The name of your forum, displayed on messages sent by this plugin. Can use color codes with '&'.
APIKEY The API Key for your forum from the server settings section of Minecraft Integration.
SOCKETNAMESPACE Advanced use only. Default is plugins
PLUGINID Advanced use only. Default is MinecraftIntegration

The FORUMURL and APIKEY are required. You can save them to the config.yml or using the commands below. After editing the configuration, use the command /nodebb reload to reconnect to the forum. No server restart is required.

Commands

For OPs

These commands are available to all OPs and any players that have the permission nodebb.admin

/nodebb
Displays all plugin commands.

"Picture of commands using /nodebb"

/nodebb reload
Reloads the config.yml from disk and reconnects to the forum.

/nodebb key [key]
Gets or sets the forum API Key and reloads.

/nodebb url [url]
Gets or sets the forum URL and reloads.

/nodebb name [name]
Gets or sets the forum name and reloads.

/nodebb debug [toggle]
Displays information useful for fixing errors. Use the toggle option to turn on verbose logging.

For Players

All players have these commands. No permission is required.

/register [EMAIL] [PASSWORD]
Connects the forum account associated with the email entered to the players UUID, allowing additional features on your forum.

Setting up your NodeBB forum

NodeBB Integration is designed for use with the NodeBB plugin Minecraft Integration.

Minecraft Integration provides a GUI to manage:

  • Forum accounts linked to a player's UUID.
  • Linking a users' avatar to their Minecraft skin.

as well as adding Widgets to your forum:

  • Server Status (dynamically updated)
  • TPS Graph
  • Player Rankings (for Playtime, Money, or McMMO stats.)
  • Player Graphs (for displaying online players or player rankings over time.)

Example Widgets

Server Status

Dynamically updates player count, avatars, online status, and plugins.

Player Graph

Updates dynamically.

Player Rankings

Dynamically updates the statistic and player order.

Advanced Configuration

Advanced users can create their own NodeBB plugin to listen for Bukkit events using the socket.io module.

The SOCKETNAMESPACE and PLUGINID must be changed to their appropriate values in the config.yml.

var socketPlugins = require('./socket.io/plugins');

socketPlugins.MyPlugin = {
eventPlayerJoin: function (socket, data, callback) {
// The event is parsed into a plain js object.
console.log(data.player.name);
}
}

Project Information

License:
CC0 or MIT License.

Source:
https://github.com/yariplus/bukkit-plugin-nodebb-integration

Comments

Add a comment