Installing the VIVERSE CLI Module
This document provides a guide for setting up the VIVERSE CLI Module which is a command-line tool for the VIVERSE platform, providing simple yet powerful functionality to manage VIVERSE accounts.
General description of what is this page
Prerequisites for using the VIVERSE CLI (node v22)
Installing the VIVERSE CLI in your account
Signing in with auth
A description of usage and how to learn more
Compatibility with VIVERSE
Do you need to use vite.js or can you use another library for building your project?
Do you need to use three.js or can you use other packages?
Can you do API calls from within your project on VIVERSE?
Pre-Requisites
Node.js v22.14.0 or later installed
Installing the VIVERSE CLI in your account
Install the tool using command prompt
A. Inside a command prompt, type: npm install -g @viverse/cli
, then click Enter. Installing a package with -g installs the package globally. The location of globally installed packages depends on your operating system and npm configuration:
Windows : In windows, packages are installed in %APPDATA%\npm\node_modules .
macOS and Linux : In mac or Linux packages are typically installed in /usr/local/lib/node_modules or a user-specific directory like ~/.npm-global.
B. Confirm that the command line tool is installed based on screen feedback.

Signing into VIVERSE with VIVERSE CLI
VIVERSE CLI usage
Login to VIVERSE platform
viverse-cli auth login
Non-interactive login for CI/CD integration
viverse-cli auth login -e <email> -p <password>
For CI/CD environments, it's recommended to use environment variables
viverse-cli auth login -e $VVS_EMAIL -p $VVS_PASSWORD
Check authentication status
viverse-cli auth status
Logout
viverse-cli auth logout
Publish content
viverse-cli publish <path>
View application list
viverse-cli app list
Compatibility with VIVERSE
Last updated
Was this helpful?