맥 노드JS 시작하기 (node.js get started on macOS)¶
설치 (Installation)¶
런타임 (Runtime)¶
$ brew install node
모듈 (NPM)¶
전역 (Global Modules)¶
$ npm install -g $MODULE
로컬 (Local Modules)¶
현재 폴더 내 .node_moduels
서브 폴더로 설치 됩니다.
$ npm install $MODULE
로컬 모듈 실행을 위해서는 환경 변수 PATH 설정이 필요합니다.
$ vim .bash_profile
alias npm-run="PATH=$(npm bin):$PATH"
$(pwd)/.node_modues/.bin
에 있는 파일을 실행하게 됩니다.
$ npm-run $MODULE