vuestrata

(★ 111)

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

파일 탐색기

  • .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

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

docker compose up

설명 보기 ▼

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

설명 보기 ▼

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

설명 보기 ▼

JSON Web Token(JWT) 처리.
사용할 수 있는 암호화 알고리즘: HS256, HS384, HS512, RS256, RS384, RS512, ES256, ES384.
더 많은 정보: <https://github.com/mike-engel/jwt-cli>.

jwt decode {{jwt_string}}

JWT 디코드:

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

JWT를 JSON 문자열로 디코드:

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

JSON 문자열을 JWT로 인코드:

🔍

node

설명 보기 ▼

서버 측 JavaScript 플랫폼 (Node.js).
더 많은 정보: <https://nodejs.org/docs/latest/api/cli.html#options>.

node {{path/to/file}}

JavaScript 파일 실행:

node

REPL(대화형 셸) 시작:

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

지정된 파일을 실행하고 가져온 파일이 변경될 때 프로세스를 재시작 (Node.js 버전 18.11+ 필요):

🔍

pro

설명 보기 ▼

Ubuntu Pro 서비스 관리.
더 많은 정보: <https://manned.org/ubuntu-advantage>.

sudo pro attach

시스템을 Ubuntu Pro 지원 계약에 연결:

pro status

Ubuntu Pro 서비스 상태 표시:

pro fix {{CVE-number}}

특정 취약점에 시스템이 영향을 받는지 확인 (가능하다면 수정 적용):

🔍

script

설명 보기 ▼

터미널 출력을 파일로 기록합니다.
더 많은 정보: <https://manned.org/script>.

script

현재 디렉토리의 `typescript`라는 이름의 파일에 새 세션 기록:

exit

사용자 지정 파일 경로에 새 세션 기록:

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

기존 파일에 추가하여 새 세션 기록:

// repository documentation