티스토리 뷰
npm install -g yo
// yo 설치
npm install -g bower
// 해당 프로젝트 폴더 bower 설치
npm install -g grunt-cli
// 해당 프로젝트 폴더 grunt 설치
chmod g+rwx /usr/local/etc/test
chmod g+rwx /root/.npm
// 권한 문제시 설정
npm install -g generator-webapp
// generator-webapp 설치
npm cache clean
// npm 관련 설치 캐쉬 클린
yo webapp
// webapp 설치
npm install -g generator-angular
// generator-angular 설치
npm install generator-karma
// 해당 프로젝트 폴더에 generator-karma 설치. unit test.
chmod g+rwx /home/ossadmin/oam4_fe
// 프로젝트 폴더 권한주기
npm cache clean
// npm 캐시 삭제
mkdir test
chmod 775 test
cd test
yo angular
// angular 설치
connect: {
options: {
port: 9000,
// Change this to '0.0.0.0' to access the server from outside.
hostname: '0.0.0.0',
livereload: 35729
},
// Gruntfile.js hostname: '0.0.0.0' 설정
grunt serve
// grunt 실행
yo angular:controller login
// angular controller 설치
yo angular --minsafe
// angular minsafe 설치
bower install --allow-root
// 해당 프로젝트에 bower 설치
'Study' 카테고리의 다른 글
bower(바우어) 관련 (0) | 2023.01.12 |
---|---|
wiredep(Wire Bower dependency, 와이어뎁) 관련 (0) | 2023.01.12 |
yeoman(요먼) 설치 관련 (0) | 2023.01.10 |
grunt(그런트) 관련 (0) | 2023.01.09 |
Aptana(압타나) 관련 (1) | 2023.01.08 |