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

@adalo/cli

v1.0.9

Published

CLI tool to bundle & distribute Proton libraries

Readme

Adalo CLI

Dev Server

The dev server allows you to develop components locally, and test them in the Adalo editor, without having to publish your packages.

Dev Server Usage

From your component repo, run:

npx adalo dev

Then from the editor, reload the page, and look under the "Add Layer" menu. You should see your local components available to add to your project.

Note: if you want to use a different dev-server than the default one, set ADALO_DEV_SERVER=https://...

Publishing for New React Native

npx adalo publish --new-react-native

Developing and Publishing the CLI

If you add a new command to the CLI, but haven't yet published the update to NPM, you can invoke the command from inside the cli repository like so:

node src/cli.js your-command-name

Once you are happy with the changes, open the package.json file and bump the version number. Then login to the adalodev NPM account (credentials in password manager) via the NPM CLI and run this command from inside the repository:

npm publish

If you receive an error about 2FA/granular tokens, this means you haven't yet created and saved an appropriately configured token for publishing. Login to the adalodev account, go to Access Tokens, and create a new read/write token scoped to the @adalo/cli package and having access to the @adalo organization. Make sure bypass 2FA is enabled. Then run this command before running npm publish:

npm config set //registry.npmjs.org/:_authToken=YOUR_NPM_TOKEN_GOES_HERE