조회 수 1149 추천 수 0 댓글 0
Atachment
첨부 '1'
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

Install Node.js and npm using Homebrew on OS X and macOS

Use Homebrew to install and update Node.js on Mac

node01.jpg


Before we get started, are you listening to JS Party? If not, you should be! Maybe start with our episode all about best practices for Node developers. ✊

The default method for installing Node.js is to download a pre-built installer for your platform, install it and make sure it’s on your $PATH.

However, if you’re a Homebrew fan like me and prefer to install all of your packages with it — ensuring your packages are installed using the same commands and directories and allowing Homebrew to easily manage upgrades and updates — then this guide will help you get started.

Install Node.js and npm with Homebrew

First, install Homebrew.

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Then run brew update to make sure Homebrew is up to date.

brew update

As a safe measure you should run brew doctor to make sure your system is ready to brew. Run the command below and follow any recommendations from brew doctor.

brew doctor

Next, add Homebrew’s location to your $PATH in your .bash_profile or .zshrc file.

export PATH="/usr/local/bin:$PATH"

Next, install Node (npm will be installed with Node):

brew install node

To test out your Node and npm install, try installing Grunt (you might be asked to run with sudo):

npm install -g grunt-cli

If that worked then congratulations — you’ve installed Node.js, npm, and Grunt.

If not — retrace your steps or post a question to Stack Overflow.


출처: https://changelog.com/posts/install-node-js-with-homebrew-on-os-x




?

  1. macOS에 node, npm 설치하기 (homebrew)

    Date2021.11.06 CategoryDevelop Byhooni Views1149
    Read More
  2. Mac에서 Node.js 설치하기

    Date2018.09.28 CategorySystem/OS Byhooni Views4196
    Read More
  3. NAT와 DHCP에 대한 간단한 설명

    Date2013.04.23 CategorySystem/OS Byhooni Views18328
    Read More
  4. OCB5 Injection 앗싸뵹! ㅋㅋ

    Date2014.07.01 CategoryAlgorithm Byhooni Views808
    Read More
  5. OGNL(Object Graph Navigation Language)

    Date2013.04.23 CategoryDevelop Byhooni Views15733
    Read More
  6. OpenGL 강좌 사이트 모음

    Date2013.04.23 CategoryDevelop Byhooni Views9638
    Read More
  7. OpenSSL로 ROOT CA 생성 및 SSL 인증서 발급하기

    Date2017.10.28 CategorySystem/OS Byhooni Views1464
    Read More
  8. OPT와 CAS에 대한 자료.. (교수님 메일로 보내드린 자료..)

    Date2013.04.23 CategoryDevelop Byhooni Views13925
    Read More
  9. OSI (Open Systems Interconnection) 개방형 시스템간 상호 접속

    Date2013.04.23 CategorySystem/OS Byhooni Views10787
    Read More
  10. php.ini 설정 안됐을때.. ㅋㅋ

    Date2013.04.23 CategorySystem/OS Byhooni Views11641
    Read More
  11. Polynomial time 이란? ㅋㅋ

    Date2013.04.23 CategoryAlgorithm Byhooni Views22692
    Read More
  12. RPA란? 어디에 어떻게 쓰이고 누가 만드나?

    Date2020.01.28 CategorySystem/OS Byhooni Views1365
    Read More
  13. RSVP 란?

    Date2017.11.22 CategoryEtc Byhooni Views989
    Read More
  14. SQL JOIN 정리 (Inner Join & Outer Join)

    Date2019.11.22 CategoryDatabase Byhooni Views1842
    Read More
  15. SSH Passwordless Login Using SSH Keygen in 5 Easy Steps

    Date2019.11.22 CategorySystem/OS Byhooni Views1395
    Read More
  16. SVN 명령어 (SVN command)

    Date2014.02.28 CategoryDevelop Byhooni Views12152
    Read More
Board Pagination Prev 1 2 3 4 5 ... 74 Next
/ 74