npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

roloxy

v1.0.0

Published

A Basic Package for JS!

Downloads

7

Readme


Bloxy Downloads Discord

NPM

About

bloxy is a module for interacting with the Roblox website and its API. It is object-oriented, which means you can have several users logged in at the same time, without a lot of effort.

Installation

Note: If you want the stable version, then download v. 2.9.985. (npm i [email protected]).

Make sure you've got Node.js installed and that you've got npm installed before proceeding.

Open up a terminal in the folder you want to install bloxy in and write in npm install bloxy --save, this will download & install bloxy and add it to your package.json file.

Example usage

const bloxy = require('bloxy');
const roblox = new bloxy();

roblox.login({
    username: "UsernameHere",
    password: "PasswordHere"
});

roblox.on('ready', function() {
    console.log("Logged in");
})

roblox.on('2fa', function (verify) {
    console.log("2FA is enabled on the account.");

    // ...Get the code
    verify(code);
});

Links

Contributing

If you'd like to contribute to bloxy, please visit the GitHub page and follow the pull requests / issue templates and follow them.

Help

If you don't understand some of the code in the examples, you need some help, or just a little push to get going, please join the Roblox API Discord Server, there we will be able to quickly assist you with your issue.

Information

Hi there, thank you for checking out bloxy. It's something I've been working on for some time and I appreciate that you found your way here.

Before you start using this module, I strongly recommend you to read the documentation for it, so you get to know how it works, and that you can see the parameters for each function, see all the classes' properties and methods, and stream events.

Bloxy was created since roblox-js is no longer mainted properly by sentanos. (Currently, the module is only being updated if there are major issues with it, AKA if it wouldn't work without the new fix at all)

If there are any features that you'd like to have integrated with bloxy. Please submit an issue or dm me on Discord @ Martini#0001

Make sure to include as much information as possible.

License

MIT

♥♥♥