본문 바로가기

Common Programming/AngularJS

AngluarJS 설치 방법

AngularJS를 적용하기 위해 다음과 같은 작업이 필요합니다.


1. NodeJS 설치

NodeJS 설치 참조


2. AngularJS 모듈 설치

AngularJS의 모듈은 angularjs.org에서 받을 수 있으며 다운로드를 누르면 CDN 경로 or npm, bowol을 사용하여 설치하는 Command가 나와 있습니다.

(npm이 설치되어 있다는 가정하에 작업을 진행하겠습니다.)


설치 명령어 수행 시 폴더 위치의 node_modules 폴더 안에 angularjs관련 파일들이 놓이게 됩니다.

(예제의 경우 ~/node_modules/angular 밑에 위치)


3. AngularJS 모듈 사용 방법

해당 파일을 Project 폴더 안에 넣은 후 html에서 angularjs 모듈을 호출하면 됩니다.

(<script src=[angular.js위치]></script>)