Contents

Views 1452 Comment 0
Atachment
Attachment '1'
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

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





?

List of Articles
No. Category Subject Author Date Views
1017 Develop [html] 캐쉬된 웹페이지 사용하지 않도록 하는 방법 hooni 2003.04.23 13067
1016 Develop [js] 키보드 아스키코드(ASCII) 코드보기 hooni 2003.04.23 32506
1015 Develop [js] 이벤트 핸들러(Event Handlers) hooni 2003.04.23 6751
1014 Develop [js] 사라지는 브라우저 hooni 2003.04.23 6878
1013 Develop [c] OpenGL 마우스 이벤트 hooni 2003.04.23 8753
1012 Develop [js] 점점 커지는 새창.. hooni 2003.04.23 7021
1011 Develop [c][java] 소켓 프로그래밍(채팅 서버 C, 클라이언트 Java) file hooni 2003.04.23 7030
1010 Develop [c] 신기한 atoi함수(www.game79.net) hooni 2003.04.23 7288
1009 Develop [c] OpenGL 색 입방체의 회전(입체) hooni 2003.04.23 7897
1008 Develop [php] 마시마로 캐릭터 방명록 file hooni 2003.04.23 8266
1007 Develop [c] 시간 계산 하는 프로그램 소스코드 file hooni 2003.04.23 6774
1006 Develop [linux] 프로세스 관련 시스템콜 hooni 2003.04.23 7872
Board Pagination Prev 1 ... 9 10 11 12 13 14 15 16 17 18 ... 98 Next
/ 98