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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@nightcycle/rbx-api-cloud-v1-universes-ordereddatastores

v0.2.2

Published

A map of Roblox apis created using the lune compatible reqwest package.

Downloads

5

Readme

roblox-wep-api-library

An effort to port the official Roblox web apis on both npm and wally.

coverage

There are many APIs, and frankly I will never use most of them - especially on the legacy side. Here's a summary:

  • Open Cloud V1: all of em!
  • Open Cloud V2: mostly universe/place ones
  • Legacy: nothing!

This will change over time, but the legacy ones probably will never be fully ported.

sub-packages

Default type complexity errors make it impractical to publish this all as a single package. To keep type-safety it is published as sub-packages. They can be found on wally / npm.

  • nightcycle/rbx-api-cloud-v1-universes-standarddatastores
  • nightcycle/rbx-api-cloud-v1-universes-places
  • nightcycle/rbx-api-cloud-v1-universes-ordereddatastores
  • nightcycle/rbx-api-cloud-v1-universes-messagingservice
  • nightcycle/rbx-api-cloud-v1-assets
  • nightcycle/rbx-api-cloud-v2-universes
  • nightcycle/rbx-api-cloud-v2-universes-places

As trees increase / decrease in complexity + there are improvements in the luau type engine, expect the specific splitting to change. Ideally all of this would be in one package, but we're not going to sacrifice type safety to do it.

authentication

This library uses env variables, in Roblox it will first attempt to find the key with HttpService:GetSecret, if that doesn't work it will look for it in _G.

  • RBX_OPEN_CLOUD_API_KEY: used for all open cloud APIs
  • ROBLOSECURITY: used for all legacy APIs

doesn't open cloud not work in roblox?

Not yet, but soon-ish

what are options, futures, and results?

They're classes I ported from rust that I've found make for better coding practices. You can download them from wally / npm:

  • option: nightcycle/option
  • result: nightcycle/result
  • future: nightcycle/future

My hope in building with them, I can encourage safer practices in the dev community. If you don't like using these, I recommend you fork and maintain a version without - there will certainly be demand for it, it's just not something I wish to do. They're pretty simple single-script classes - until I get proper documentation set up, I would honestly just recommend reading the code + the rust documentation.

contribution

Contributions are appreciated, especially porting APIs. Here are the requirements:

  • no nulls except for partial forms (like update masks)
  • stick to the established conventions
  • always return a future + result combo
  • file naming / directory hierarchy should match the url path
  • all methods require a test under the tests directory

That being said, so long as it has a test and it works, I'm happy to polish things up so don't stress too much.