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

@thatopen/services

v0.4.0

Published

Client library and CLI for building BIM apps and cloud components on the That Open Platform

Readme

@thatopen/services

Client library and CLI for building BIM apps and cloud components on That Open Platform. Apps run inside the platform's browser environment; cloud components run server-side and can be triggered from any app.

Using an AI assistant? Point it at this single file and it can take you from nothing to a running app: → docs/ai-quickstart.md

Quick Start

1. Install the CLI

npm install -g @thatopen/services@latest

2. Choose a project type

| Type | Template | Use when | |------|----------|----------| | App | app | You're building a BIM app that runs in the platform's browser UI | | Cloud component | cloud-component | You're building server-side logic triggered by an app |

3. Scaffold

See the full command reference here: → docs/cli/create.md

To use beta engine libraries instead of the stable ones, see: → docs/cli/swap.md

4. Next steps

Once scaffolded, open AGENTS.md in the scaffolded project root — it has everything needed to start building.

Beta engine libraries (Founding Members)

Founding Members get early access to the private beta engine libraries (@thatopen-platform/*-beta). The CLI configures access automatically — no npm account or manual token needed.

thatopen login --token <your-token>   # API token from the dashboard → Data → API Tokens
thatopen create my-app --beta         # new project on the beta libraries
# or, in an existing project:
thatopen swap --beta                  # toggle the current project to beta

On --beta, the CLI fetches your read-only beta npm credentials and writes them to the project's .npmrc, so npm install resolves the private packages. The .npmrc is gitignored — it carries a credential, so don't commit or share it. Access is tied to your membership; non-Founding accounts get a clear message and the project is still created.

What's in this repository

  • LibraryEngineServicesClient and PlatformClient for interacting with the That Open API (files, folders, apps, cloud components, executions, permissions).
  • CLIthatopen command for scaffolding and publishing.
  • Built-in component types — TypeScript stubs for platform-hosted components.

Docs

Full reference for all CLI commands and flags: → docs/cli/paths.json

Contributing

See CONTRIBUTING.md for setup, build commands, and publishing workflow.