New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@getpara/cli

Package Overview
Dependencies
Maintainers
6
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@getpara/cli

Unified CLI for Para SDK - project scaffolding, diagnostics, and API key management

latest
Source
npmnpm
Version
2.20.0
Version published
Maintainers
6
Created
Source

@getpara/cli

The official CLI for Para. Authenticate, manage projects and API keys, scaffold new apps, and diagnose SDK issues — all from the terminal.

Install

npm install -g @getpara/cli

Or run directly with npx:

npx @getpara/cli <command>

Quick Start

para login                 # Sign in via the developer portal
para orgs switch           # Pick your organization
para projects switch       # Pick your project
para keys list             # View your API keys

Commands

Auth

CommandDescription
para loginSign in via the Para developer portal
para logoutClear stored credentials
para whoamiShow current user, org, and project context

Resources

CommandDescription
para orgs listList your organizations
para orgs switchSet the active organization
para projects listList projects in your organization
para projects createCreate a new project
para projects switchSet the active project
para keys listList API keys for a project
para keys get <id>Get details for a specific key
para keys createCreate a new API key
para keys rotate <id>Rotate an API key

Setup

CommandDescription
para create [name]Scaffold a new Para-powered app (Next.js or Expo)
para initSave current org/project/env to a .pararc file
para config get [key]View configuration values
para config set <key> <value>Set a configuration value
para config unset <key>Remove a configuration value
para doctor [path]Check a project for common SDK issues

Global Options

-e, --environment <env>  Target environment (DEV, SANDBOX, BETA, PROD)
--json                   Output as JSON
--org <id>               Organization ID override
--project <id>           Project ID override
-q, --quiet              Suppress non-essential output
--no-input               Disable interactive prompts (auto-detected in CI)

Authentication

The CLI supports three authentication methods:

  • Browser login (default) — para login opens the developer portal for OAuth
  • Environment variable — set PARA_TOKEN for scripts and CI
  • Token file — set PARA_TOKEN_FILE to read a token from disk

Credentials are stored in ~/.config/para/credentials.json.

Configuration

Settings are resolved in order (first match wins):

  • CLI flags (--org, --project, -e)
  • Environment variables (PARA_ENVIRONMENT, PARA_ORG_ID, PARA_PROJECT_ID)
  • Project config (.pararc in project root)
  • Global config (~/.config/para/config.json)
  • Defaults

More

Run para <command> --help for detailed usage on any command.

Keywords

para

FAQs

Package last updated on 02 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts