Contents

Views 4581 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
759 Develop [js] 키보드 아스키코드(ASCII) 코드보기 hooni 2003.04.23 33417
758 Develop [js] 이벤트 핸들러(Event Handlers) hooni 2003.04.23 8020
757 Develop [js] 사라지는 브라우저 hooni 2003.04.23 8423
756 Develop [c] OpenGL 마우스 이벤트 hooni 2003.04.23 10025
755 Develop [js] 점점 커지는 새창.. hooni 2003.04.23 7819
754 Develop [c][java] 소켓 프로그래밍(채팅 서버 C, 클라이언트 Java) file hooni 2003.04.23 8407
753 Develop [c] 신기한 atoi함수(www.game79.net) hooni 2003.04.23 8293
752 Develop [c] OpenGL 색 입방체의 회전(입체) hooni 2003.04.23 8983
751 Develop [php] 마시마로 캐릭터 방명록 file hooni 2003.04.23 9321
750 Develop [c] 시간 계산 하는 프로그램 소스코드 file hooni 2003.04.23 7895
749 Develop [linux] 프로세스 관련 시스템콜 hooni 2003.04.23 9253
748 Develop [c] 문자열 처리 관련 함수들 설명 hooni 2003.04.23 9190
Board Pagination Prev 1 ... 3 4 5 6 7 8 9 10 11 12 ... 71 Next
/ 71