JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1568
  • Score
    100M100P100Q124689F
  • License AGPL-3.0-or-later

Liveblocks command line interface

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (liveblocks) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    liveblocks

    Liveblocks command line interface.

    Commands

    liveblocks dev

    Start the local Liveblocks dev server (requires Bun):

    npx liveblocks dev

    Options:

    Flag Description Default
    -p, --port Port to listen on. 1153
    --host Host to bind to. localhost
    --ci Best defaults for running the Liveblocks dev server in CI. Alias of --ephemeral --no-check.
    --ephemeral Do not persist state between restarts. Recommended for running unit tests. Persist between restarts by default
    --no-check Skip project setup check on start. Checks by default
    -h, --help Show help.

    By default, the dev server scans your project on startup for common Liveblocks call sites (<LiveblocksProvider>, createClient(), new Liveblocks()) and warns if any of them are missing a baseUrl pointing at the local dev server. Use --no-check to skip this check.

    liveblocks upgrade

    Upgrade all @liveblocks/* packages in your project to the same version:

    npx liveblocks upgrade         # upgrades to "latest"
    npx liveblocks upgrade 2.15.0  # upgrades to a specific version

    Automatically detects your package manager (npm, yarn, pnpm, or bun).

    Run with Docker

    docker run -p 1153:1153 ghcr.io/liveblocks/cli dev

    See DOCKER.md for configuration, volume mounts, and image signature verification.

    License

    Licensed under the GNU Affero General Public License v3.0 or later, Copyright © 2021-present Liveblocks.

    See LICENSE-AGPL-3.0 for more information.