본문 바로가기

옛글/FullStack (MEAN)

Node Express Coffee PG Yeoman 설치 가이드

반응형

원문 : https://gist.github.com/victorkim/ff94ff31a54484089125


Node 설치

brew install node

nvm 설치 (node의 버전을 관리해주는 툴)

curl https://raw.githubusercontent.com/creationix/nvm/v0.5.1/install.sh | sh

bower과 express 설치

bower은 front-end js 라이브러리 패키지, express는 backend 프레임워크

npm install -g bower express

yeoman 설치 (generator)

npm install -g yo

angular fullstack 설치 (https://github.com/DaftMonk/generator-angular-fullstack )

npm install -g generator-angular-fullstack

mkdir my-new-project && cd $_

yo angular-fullstack [app-name] —coffee

질문에서 몽고는 N 나머지는 y

pg 설치

http://www.moncefbelyamani.com/how-to-install-postgresql-on-a-mac-with-homebrew-and-lunchy/

알아야할 것

  • coffee
  • yeoman
  • grunt
  • express
  • node
  • postgresql


반응형