웹 접근성 향상을 위한 웹 표준실무 (예제)

2016. 12. 16. 09:08서버 프로그래밍

work.zip

HTML5, CSS3, Javascript 예제

JQuery, Bootstrap 관련 예제

Node.js 웹서버 예제


<Node.js>

* 공통적으로 1번만 하면 되는 일

npm install -g express

npm install -g express-generator


* 웹서버 프로젝트 생성

express helloworld

cd helloworld

npm install

node ./bin/www


* MongoDB 실행방법

cd c:\mongodb

mkdir var

cd bin

mongod -dbpath c:\mongodb\var


* MongoDB 접속방법

cd c:\mongodb

cd bin

mongo


* HTML 상의 Javascript에서 크로스 도메인 문제 해결을 위해 크롬 플러그인 설치 필요

javascript ajax 크로스 도메인 요청 하기 (CORS)

http://adrenal.tistory.com/16


<Angular.js>

> npm install -g yo

> npm install -g bower

> npm install -g grunt-cli

> npm install -g generator-angular


> mkdir mytrip

> cd mytrip

> yo angular mytrip

----- Yes

Gulp? No

Sass? No

Bootstrap? Yes

module select : <Enter>

> npm install

> bower install

> grunt build

> grunt serve

> bower install angular-bootstrap --save

> bower install angular-ui-router --save


mytrip.zip


* morris 그래프 라이브러리

http://morrisjs.github.io/morris.js/

raphael.min.js