node, npm, yarn 설치 하기
앞세 설치한 Homebrew는 node와 yarn을 설치하기 위해서였다.
이번에는 node, yarn을 설치해 보겠다.
1. node 설치하기
$ brew install node
==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
https://github.com/Homebrew/brew#donations
==> Auto-updated Homebrew!
Updated 1 tap (homebrew/core).
==> Updated Formulae
Updated 3 formulae.
Running `brew update --preinstall`...
2. node 설치 확인하기
$ node --version
v17.7.1
3. node 실행
$ node
Welcome to Node.js v17.7.1.
Type ".help" for more information.
>
node를 설치함으로써 npm도 실행 가능합니다.
4. yarn 설치하기
앞서 node를 설치했기 때문에 node 설치를 제외하는 코드를 포함 해야 한다. '--ignore-dependencies'
$ brew install yarn --ignore-dependencies
Warning: `--ignore-dependencies` is an unsupported Homebrew developer flag!
Adjust your PATH to put any preferred versions of applications earlier in the
PATH rather than using this unsupported flag!
5. yarn 설치 확인하기
$ yarn --version
1.22.17
Author And Source
이 문제에 관하여(node, npm, yarn 설치 하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@biigpiie/M1-Pro-node-npm-yarn-설치-하기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)