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

appbuilder-connector-interactive-onboarding

v1.0.0

Published

Interactive script to set up Adobe App Builder connector projects

Readme

appbuilder-connector-interactive-onboarding

Interactive CLI that automates Adobe App Builder connector project setup. Run one command, answer a few prompts, get a fully configured connector project.

What it does

Instead of remembering and running 5+ separate aio commands, you run:

npx appbuilder-connector-interactive-onboarding

The CLI walks you through:

  1. Prerequisites — checks Node.js 20+, npm, and aio CLI (auto-installs aio if missing)
  2. Authentication — opens browser for Adobe login
  3. Organization — lists your orgs, you pick one
  4. Project — lists projects (or create a new one)
  5. Workspace — pick Stage, Production, etc.
  6. Connector Type — pick Translation, Commerce, etc. (maps to template internally)
  7. Target Directory — where to create the project
  8. Scaffold — runs aio app init with your connector template, configures .aio and .env
  9. Install — runs npm install
  10. Next step — start dev server, deploy, or exit

Requirements

  • Node.js >= 20
  • npm
  • Adobe Developer Console access with Developer or System Admin role

The @adobe/aio-cli is installed automatically if not present.

Usage

From npx (no install needed)

npx appbuilder-connector-interactive-onboarding

From source

cd appbuilder-connector-interactive-onboarding
npm install
npm start

Connector Types

The CLI supports these connector types:

| Connector Type | Template | |---|---| | Translation | @adobe/generator-app-connector-translation | | Commerce | @adobe/generator-app-connector-commerce |

To add new connector types, edit src/connectors.js.

How it works

The CLI wraps these aio commands under the hood:

| Phase | Command | |---|---| | Auth | aio auth login | | Org/Project/Workspace | aio console org list --json, aio console org select <id>, etc. | | Pre-seed config | aio app use --merge --no-input (before init) | | Scaffold | aio app init <dir> --template <name> --yes --import <config> | | Dev/Run/Deploy | aio app dev, aio app run, aio app deploy |

You never need to run these manually. The CLI orchestrates the full sequence.

Key Implementation Detail

The CLI runs aio app use --merge --no-input before aio app init. This is required because some template generators (like asset-compute) read .aio and .env during their own install phase. The --import flag in aio app init is processed too late.