Files
egutierrez 47fac22230 chore: auto-commit (799 archivos)
- .claude/CLAUDE.md
- .claude/commands/subagentes.md
- .claude/rules/INDEX.md
- .mcp.json
- bash/functions/cybersecurity/analyze_dns.md
- bash/functions/cybersecurity/audit_http_headers.md
- bash/functions/cybersecurity/audit_ssh_config.md
- bash/functions/cybersecurity/check_firewall.md
- bash/functions/cybersecurity/detect_suspicious_users.md
- bash/functions/cybersecurity/encrypt_file.md
- ...

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-14 00:28:20 +02:00

1.3 KiB

name, kind, lang, domain, version, purity, signature, description, tags, uses_functions, uses_types, returns, returns_optional, error_type, imports, params, output, tested, tests, test_file_path, file_path, source_repo, source_license, source_file
name kind lang domain version purity signature description tags uses_functions uses_types returns returns_optional error_type imports params output tested tests test_file_path file_path source_repo source_license source_file
install_volta function bash infra 1.0.0 impure install_volta() -> void Instala Volta, el gestor de versiones de Node.js, usando el instalador oficial de get.volta.sh. Configura VOLTA_HOME y PATH en ~/.bashrc y ~/.zshrc. Idempotente: si Volta ya está instalado, informa y termina.
bash
install
volta
node
pendiente-usar
false error_go_core
name desc
(ninguno) no acepta argumentos
progreso a stdout; exit code 1 si curl no está disponible o falla la instalación false
bash/functions/infra/install_volta.sh https://gitea-dgg044oo04woo4ggcsws4gk0.organic-machine.com/egutierrez/DevLauncher.git MIT scripts/linux/instaladores/instalar_volta.sh

Ejemplo

source bash/functions/infra/install_volta.sh

install_volta

# Uso posterior (tras recargar shell)
volta install node
volta install pnpm
volta list

Notas

Volta se instala en $HOME/.volta. Requiere curl. A diferencia de nvm, Volta gestiona versiones de Node.js a nivel de proyecto via package.json. Después de instalar, recargar el shell con source ~/.bashrc.