개발 구축 환경 53

Bootstrap(부트스트랩)을 이용해서 개발 해보기

부트 스트랩은 프론트 엔드에서 상당히 사용이 많이 되고 있음 부트스트랩 버전 3과 버전 4는 차이가 많이 난다. 3,4는 jquery를 100%활용하고 있어서 굉장히 무겁다 현재 새로만들어지고 있는 버전 5는 jquery를 사용하지 않는다는데 아직 공개는 안됌 지금 사용할 버전은 4 버전을 쓸 것이다. link(rel="stylesheet", href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css") script(src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js") script(src="https://cdnjs.cloudflare.com/ajax/li..

Nodejs 다운, 가장 많이 사용하는 세가지 tool 설치(yarn, express-generator, nodemon)

nodejs.org 주소창에 검색 버전이 짝수면 좀더 안정화 된 버전임 우리가 다운 받을거는 14버전 기본 베이스 언어가 자바스크립트이다. 설치는 간단하다! accpet 체크해주고 전부 next눌러주고 install해주면 끝 관리자 권한으로 실행! node -v : 방금 설치한 nodejs의 버전이 나오는 명령어 nodejs로 개발을 할 때 가장 많이하는 세가지 tool - yarn, express-generator, nodemon

jquery 설치

min을 지우고 ctrl + 클릭 하면 소스코드를 볼 수 있음 min이 있으면 데이터 낭비를 줄이고, 난독화를 시키기 위해서 https://www.w3schools.com/jquery/jquery_get_started.asp jQuery Get Started jQuery Get Started Adding jQuery to Your Web Pages There are several ways to start using jQuery on your web site. You can: Download the jQuery library from jQuery.com Include jQuery from a CDN, like Google Downloading jQuery There are two versions of jQ..