/
vagrant 에서 npm install 에러
vagrant 에서 npm install 에러
npm install 실행시 다음과 같이 심볼릭 링크시에 에러가 발생함,
npm ERR! EPROTO: protocol error, symlink '../acorn/bin/acorn' -> '/home/vagrant/vue-webpack-simple/node_modules/.bin/acorn'
원인
VirtualBox 는 보안상의 이유로 shared folder 에 대해 symbolic link를 지원하지 않음
해결책
npm 옵션 변경
alias npm='npm --no-bin-links $*'
Ref
- http://stackoverflow.com/questions/24200333/symbolic-links-and-synced-folders-in-vagrant
- https://github.com/npm/npm/issues/9901
, multiple selections available,
Related content
npm install 시 module 이 설치되는 경로
npm install 시 module 이 설치되는 경로
More like this
Laravel Elixir 설치
Laravel Elixir 설치
More like this
nginx 와 nodejs 연동
nginx 와 nodejs 연동
More like this
ubuntu apache httpd
ubuntu apache httpd
More like this
vundle 플러그인 관리자 설치 및 유용한 플러그인
vundle 플러그인 관리자 설치 및 유용한 플러그인
More like this
maven 실행시 "Premature end of Content-Length delimited message body" 에러가 발생하고 다운로드가 안 될때..
maven 실행시 "Premature end of Content-Length delimited message body" 에러가 발생하고 다운로드가 안 될때..
More like this