0.0.1-c • Published 6 years ago

bloxnode v0.0.1-c

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago
  • Uses most recent APIs for a quick and efficient experience.
  • Has features for group management, user management, and much more.
  • Covers the majority of the Roblox API.
  • Efficient and performant functions and events.

Prerequisites

Installation

To save bloxnode locally, run the following command:

$ npm install bloxnode -- save

To save bloxnode globally, run the following command:

$ npm install bloxnode -g

You can ignore any warnings about unsatisfied dependencies. They are all optional.

Usage Example

const roblox = require('bloxnode');
const groupId = 18;

roblox.login(username, password).then(() => {
	console.log(`Group ${groupId}'s current shout is "${roblox.groups.getShout(groupId)}"!`);
	roblox.groups.onWallPost(groupId).on('data', function (post) {
		roblox.groups.post(groupId, "Hello!").then(() => {
			console.log("Successfully posted on wall!");
		});
	});
});

Issues and Contributions

  • When creating an issue, please ensure that it hasn't already been reported, and double-check the documentation.
  • Push requests are not currently being accepted. This library is still a work in progress and will be added onto more in the future.

Credits

  • sentanos - Inspiration for library creation.
0.0.1-c

6 years ago

0.0.1-b

6 years ago

0.0.1-a

6 years ago

0.0.1

6 years ago

0.1.0

6 years ago