vuestrata

(★ 111)

A modern, production-ready Vue 3 template with multi-theme support, Reka UI wrappers, and enterprise-grade tooling.

File Explorer

  • .commitlintrc.json
  • .dockerignore
  • .env.example
  • .gitignore
  • .nvmrc
  • AGENTS.md
  • CHANGELOG.md
  • CLAUDE.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • DESIGN.md
  • docker-compose.yml
  • Dockerfile
  • index.html
  • LICENSE
  • package.json
  • playwright.config.ts
  • pnpm-lock.yaml
  • pnpm-workspace.yaml
  • PRODUCT.md
  • README.md
  • RELEASE.md
  • SECURITY.md
  • skills-lock.json
  • tsconfig.e2e.json
  • tsconfig.json
  • UPGRADING.md
  • vercel.json
  • vite.config.ts
  • vuestrata.lock.json

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

docker compose up

View Details ▼

Start and run Docker services defined in a Compose file.

docker compose up

Start all services defined in the docker-compose file:

docker compose up {{[-d|--detach]}}

Start services in the background (detached mode):

docker compose up --build

Start services and rebuild images before starting:

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

jwt

View Details ▼

Work with JSON Web Tokens (JWTs).
Encryption algorithms available are HS256, HS384, HS512, RS256, RS384, RS512, ES256, ES384.

jwt decode {{jwt_string}}

Decode a JWT:

jwt decode {{[-j|--json]}} {{jwt_string}}

Decode a JWT as a JSON string:

jwt encode {{[-A|--alg]}} {{HS256}} {{[-S|--secret]}} {{1234567890}} '{{json_string}}'

Encode a JSON string to a JWT:

🔍

node

View Details ▼

Server-side JavaScript platform (Node.js).

node {{path/to/file}}

Run a JavaScript file:

node

Start a REPL (interactive shell):

node --watch {{path/to/file}}

Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):

🔍

pro

View Details ▼

Manage Ubuntu Pro services.

sudo pro attach

Connect your system to the Ubuntu Pro support contract:

pro status

Display the status of Ubuntu Pro services:

pro fix {{CVE-number}}

Check if the system is affected by a specific vulnerability (and apply a fix if possible):

🔍

script

View Details ▼

Record all terminal output to a typescript file.

script

Record a new session to a file named `typescript` in the current directory:

exit

Stop recording:

script {{path/to/session.out}}

Record a new session to a custom filepath:

// repository documentation