Mobb CLI - Install blocked by npm registry
registry=https://<your-internal-npm-registry>/repository/npm-registry/
PreviousPull Requests - Azure DevOps rejects a PR with a long descriptionNextMobb CLI - Blocked by corporate proxy
Last updated
Running the Mobb CLI inside a locked-down enterprise network where direct access to the public npm registry is blocked.
Symptoms
npx mobbdev@latest ... fails to download the package.
Your organization blocks installing packages directly from the public npm registry.
Likely cause
The CLI is distributed on the public npm registry. In many enterprises, npm is configured to pull only from an internal mirror/registry (for example, an internal Nexus or Artifactory proxy), so the public download is blocked.
Resolution
Point npm at your organization's internal registry, typically by adding a line to your .npmrc file:
registry=https://<your-internal-npm-registry>/repository/npm-registry/Make sure the Mobb CLI package has been mirrored/allowed in that internal registry (ask the team that manages it if you're unsure).
Re-run the CLI command.
Still stuck? Contact support@mobb.ai.
Last updated