@cano721/mysql-mcp-server 0.1.10 → 0.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +44 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -429,9 +429,6 @@ node --version
|
|
|
429
429
|
|
|
430
430
|
# npm 버전 확인
|
|
431
431
|
npm --version
|
|
432
|
-
|
|
433
|
-
# Node.js 업데이트가 필요한 경우:
|
|
434
|
-
# https://nodejs.org/ 에서 최신 LTS 버전 다운로드
|
|
435
432
|
```
|
|
436
433
|
|
|
437
434
|
**Node.js 18 미만이면 다음 오류가 발생할 수 있습니다:**
|
|
@@ -439,6 +436,50 @@ npm --version
|
|
|
439
436
|
- 최신 JavaScript 기능 미지원
|
|
440
437
|
- 의존성 패키지 호환성 문제
|
|
441
438
|
|
|
439
|
+
**Node.js 업데이트 방법:**
|
|
440
|
+
|
|
441
|
+
##### 방법 1: 공식 웹사이트에서 다운로드 (권장)
|
|
442
|
+
1. https://nodejs.org/ 방문
|
|
443
|
+
2. **LTS 버전** (Long Term Support) 다운로드
|
|
444
|
+
3. 설치 프로그램 실행
|
|
445
|
+
4. 터미널 재시작 후 버전 확인: `node --version`
|
|
446
|
+
|
|
447
|
+
##### 방법 2: nvm 사용 (개발자 권장)
|
|
448
|
+
```bash
|
|
449
|
+
# nvm 설치 (macOS/Linux)
|
|
450
|
+
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
|
|
451
|
+
|
|
452
|
+
# 터미널 재시작 후
|
|
453
|
+
nvm install --lts # 최신 LTS 버전 설치
|
|
454
|
+
nvm use --lts # LTS 버전 사용
|
|
455
|
+
nvm alias default lts/* # 기본값으로 설정
|
|
456
|
+
```
|
|
457
|
+
|
|
458
|
+
##### 방법 3: Homebrew 사용 (macOS)
|
|
459
|
+
```bash
|
|
460
|
+
# Homebrew로 Node.js 업데이트
|
|
461
|
+
brew install node
|
|
462
|
+
|
|
463
|
+
# 또는 기존 설치가 있다면
|
|
464
|
+
brew upgrade node
|
|
465
|
+
```
|
|
466
|
+
|
|
467
|
+
##### 방법 4: 패키지 매니저 사용 (Linux)
|
|
468
|
+
```bash
|
|
469
|
+
# Ubuntu/Debian
|
|
470
|
+
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
|
|
471
|
+
sudo apt-get install -y nodejs
|
|
472
|
+
|
|
473
|
+
# CentOS/RHEL/Fedora
|
|
474
|
+
curl -fsSL https://rpm.nodesource.com/setup_lts.x | sudo bash -
|
|
475
|
+
sudo yum install -y nodejs
|
|
476
|
+
```
|
|
477
|
+
|
|
478
|
+
##### 방법 5: Windows
|
|
479
|
+
1. https://nodejs.org/ 에서 Windows Installer 다운로드
|
|
480
|
+
2. 또는 Chocolatey 사용: `choco install nodejs`
|
|
481
|
+
3. 또는 Scoop 사용: `scoop install nodejs`
|
|
482
|
+
|
|
442
483
|
#### 1. npx 캐시 문제
|
|
443
484
|
```bash
|
|
444
485
|
# 최신 버전 강제 사용
|