Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noblox/noblox.js
A Node.js API wrapper for Roblox.
https://github.com/noblox/noblox.js
hacktoberfest noblox nodejs roblox roblox-api roblox-js
Last synced: 5 days ago
JSON representation
A Node.js API wrapper for Roblox.
- Host: GitHub
- URL: https://github.com/noblox/noblox.js
- Owner: noblox
- License: mit
- Created: 2018-03-24T17:35:25.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-29T05:32:15.000Z (3 months ago)
- Last Synced: 2024-10-12T09:07:00.934Z (about 1 month ago)
- Topics: hacktoberfest, noblox, nodejs, roblox, roblox-api, roblox-js
- Language: JavaScript
- Homepage: https://noblox.js.org
- Size: 6.28 MB
- Stars: 246
- Watchers: 7
- Forks: 140
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-roblox - noblox.js - A Node.js API wrapper for Roblox. (Libraries / API Wrappers)
README
A Node.js wrapper for interacting with the Roblox API; forked from roblox-js.
About •
Prerequisites •
Installation •
Quickstart •
Documentation •
Common Issues •
YouTube Series •
Credits •
License---
## About
`noblox.js` is an open-source Roblox API wrapper written in JavaScript (with TypeScript compatibility) as a fork from sentanos's roblox-js module.
This NPM package enables operations froms the [Roblox website](https://www.roblox.com) to be executed via NodeJS; many individuals leverage `noblox.js` along side [Roblox's HTTPService](http://wiki.roblox.com/index.php?title=API:Class/HttpService) to create in-game scripts that interact with the website, i.e. promote users, shout events, and so on, or to create Discord utilities to manage their community.
If you are looking for more information on how to create something like this, check out [our sister library, `noblox.js-server`](https://github.com/noblox/noblox.js-server) or [our YouTube series](https://www.youtube.com/playlist?list=PLEW4K4VqMUb_VMA3Yp9LI4gReRyVWGTnU). Keep in mind that these resources may not always be up to date, so it is **highly** encouraged that you learn to use the `noblox.js` library directly.
---
## Prerequisites
- [**Node.js®**](https://nodejs.org/en/download/current/) v18.18 or later
---
## Installation
With node.js installed simply run:
```bash
# Run this to install noblox.js locally to your repository.
$ npm install noblox.js# Alternatively, if you are using yarn:
$ yarn add noblox.js# To use noblox.js anywhere, run this code to install the package globally:
$ npm install noblox.js -g
```
That's it!---
## Documentation
You can locate the [`noblox.js` documentation here](https://noblox.js.org/); keep in mind some internal or legacy methods may not be documented.
### Legend
You may notice our documentation utilizes emojis in every function description; they have meanings!| Icon | Description |
| ---- | ----------- |
| 🔐 | Authentication through `setCookie()` is required to use this method.[1](#f1)
| 🔓 | Authentication through `setCookie()` is required in **some** use-cases; dependent on the target's privacy settings.
| ✅ | No authentication is required to use this method.[1](#a1) : Extended permissions may be required such as edit permissions or account ownership.
---
## Quickstart
1) [Install `noblox.js`.](#installation)
2) Retrieve your `.ROBLOSECURITY` cookie. Instructions on how to do that can be found [here](https://noblox.js.org/tutorial-Authentication.html).
3) Write your code.
_Using `async/await` syntax:_
```js
const noblox = require('noblox.js')
async function startApp () {
// You MUST call setCookie() before using any authenticated methods [marked by 🔐]
// Replace the parameter in setCookie() with your .ROBLOSECURITY cookie.
const currentUser = await noblox.setCookie('_|WARNING:-DO-NOT-SHARE-THIS.--Sharing-this-will-allow-someone-to-log-in-as-you-and-to-steal-your-ROBUX-and-items.|_6E6F626C6F782E6A73')
console.log(`Logged in as ${currentUser.UserName} [${currentUser.UserID}]`)
// Do everything else, calling functions and the like.
const groupInfo = await noblox.getGroup(9997719)
console.log(groupInfo)
}
startApp()
```You are now using noblox.js!
### [More examples can be found here.](https://github.com/noblox/noblox.js/tree/master/examples)
**Promises are fundamental to this library**; if you are unfamiliar with JavaScript promises, we recommend you check out [our tutorial here](https://noblox.js.org/tutorial-Promises.html), and [Daniel Shiffman's JavaScript series](https://www.youtube.com/watch?v=QO4NXhWo_NM&list=PLRqwX-V7Uu6YgpA3Oht-7B4NBQwFVe3pr&index=12).
---
## Hiding Your Cookie
It is bad practice to store your `.ROBLOSECURITY` cookie inside your codebase; it is too easy to accidentally screenshot or push this private key to GitHub. We recommend using a [package such as `dotenv`](https://www.npmjs.com/package/dotenv) to store your private information in environmental variables.
We recommend using a secondary account for botting purposes.
Consult their documentation or [follow this video](https://www.youtube.com/watch?v=17UVejOw3zA).
---
### Invalidating A Cookie
In the event of accidentally exposing your `.ROBLOSECURITY` cookie, do not panic. Go to [`Account Settings` > `Security`](https://www.roblox.com/my/account#!/security), select `Sign out of all other sessions`, then log out of your account. This should invalidate your `.ROBLOSECURITY` cookie.
---
## Common Issues
> **Error: You are not logged in.**
You may be calling a function before `setCookie()` is completed; make sure that you are awaiting `setCookie()` before initializing any event listeners or function calls.
`noblox.js` is a promise based library, this enables you to run operations concurrently; however if you are not awaiting your promises, this means while `setCookie()` is validating your cookie, _your other functions will continue to run_- ~30ms is a **long time** at the computer scale.
**Promises are fundamental to this library**; if you are unfamiliar with JavaScript promises, we recommend you check out [our tutorial here](https://noblox.js.org/tutorial-Promises.html), and [Daniel Shiffman's JavaScript series](https://www.youtube.com/watch?v=QO4NXhWo_NM&list=PLRqwX-V7Uu6YgpA3Oht-7B4NBQwFVe3pr&index=12).
> **Error: 400 The roleset is invalid or does not exist.**
You likely are using a `rankId` (0 - 255) instead of a `rolesetId` (>255); a `rolesetId` is a unique identifier for a role which you can find by calling [`getRoles(groupId)`](https://noblox.js.org/global.html#getRoles).
Roblox's naming scheme is a fickle beast; similarly, a `developerProductId` is _different_ than a `productId` (which appears on the public facing dashboard); use [`getDeveloperProducts(placeId)`](https://noblox.js.org/global.html#getDeveloperProducts) to see the `developerProductId`.
> **Error: Initialization failed: 401 Authorization has been denied for this request.**
First, see the steps for `Error: You are not logged in`.
If this is unresolved, are you sure the bot has permissions to access this resource? Can you do this operation manually on the website through the bot account?
At the end of the day, a 'bot' is a user account, it cannot magically bypass privacy restrictions or group permissions.
---
## Credits
* [suufi](https://github.com/suufi) - Lead maintainer
* [sentanos](https://github.com/sentanos) - We wouldn't exist without him. 😀
* [Neztore](https://github.com/Neztore) - Library maintenance and review
* [alanbixby](https://github.com/alanbixby) - Library maintenance
* [popeeyy](https://github.com/popeeyy) - Creation of the documentation.
* [edward](https://github.com/edwrddd) - Helping with the creation of the documentation.---
## License
[MIT](https://github.com/noblox/noblox.js/blob/master/LICENSE)