본문 바로가기

분류 전체보기474

데이터 타입 확인, 외부 js 파일 함수 가져다가 사용하는 방법 보통의 방법으로 확인 하는 명령어(typeof) 객체, 배열 타입은 object로 통합되어 보여진다. // 타입확인 typeof console.log(typeof "Hello World!!"); console.log(typeof 123); console.log(typeof true); console.log(typeof undefined); // 객체 데이터와 배열데이터는 object로 나온다 console.log(typeof null); console.log(typeof {}); console.log(typeof []); 타입을 자세히 확인할 수있는 함수 생성 object 였던 값들이 세분화 되어 보여진다. function getType(data) { return Object.prototype.toStr.. 2021. 5. 25.
Node.js 세팅 1. 프로젝트 열기 2. 터미널에 npm init -y 명령어 입력 3. npm i parcel-bundler -D 명령어로 parcel 패키지 설치 4. package.json 파일내 scripts 항목 수정 "scripts": { "dev": "parcel index.html", "build": "parcel build index.html" }, 5. index.html 생성 5. main.js 생성 console.log("Hello World!!"); 6. 실행: npm run dev 명령어 입력(dev: parcel 경로 세팅 명칭) 2021. 5. 25.
git(형상유지) 제외 처리(node.js) npm i 명령어를 이용해 재설치가 가능하기 때문에 따로 형상유지를 할 필요가 없다 형상유지를 할 경우 파일 용량이 크고 갯수가 많기 때문에 시간이 오래 걸리기 때문에 권장하지 않는다. 방법 1. .gitignore 파일 생성 2. 제외할 파일, 폴더 입력 형상관리를 시작하는 git init 명령어 입력하여 확인 입력한 폴더를 제외하고 형상관리를 시작한다. git status 명령어로 파일을 확인 git 추적 시작: git add . 확인: git status 버전 생성: git commit -m "프로젝트 생성" 버전 확인: git log 원격 저장소 연결: git remote add origin "저장소 url" 원격 저장소에 프로젝트 올리기: git push origin master 확인(제외한 폴.. 2021. 5. 25.
버전 npm 설치된 패키지 버전 확인: npm info lodash 버전 강제 설치: npm install lodash@4.17.20 패키지 버전 업데이트: npm update lodash 2021. 5. 25.
NPM 예제 console.log 찍는거 확인 디렉터리 구조 index.html main.js console.log("hello world!"); package.json -> dev 항목에 parcel 패키지를 index.html으로 실행할것을 선언(개발용) { "name": "TEST", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "dev": "parcel index.html" }, "keywords": [], "author": "", "license": "ISC", "devDependencies": { "parcel-bundler": "^1.12.5" }, "dependencies": { "lodash": "^4.17.21" }.. 2021. 5. 24.
NPM NPM(Node Package Manager): 전 세계의 개발자들이 만든 다양한 기능(패키지, 모듈)들을 관리 NVM을 설치하면 자동적으로 NPM도 함께 설치된다. npm 시작 명령어(npm으로 프로젝트 관리 시작): npm init -y 프로젝트 폴더에 package.json 파일이 생성된다. main은 삭제해도 된다. npm에 특정 패키지 설치: npm install parcel-bundler -D 설치 확인 (parcel-bundler라는 패키지 사용시 필요한 다른 패키지들도 함께 설치된다.) package.json 파일에서 설치 내역을 확인 할 수 있다. dependencies 의 패키지를 한번에 다운 받는 명령어: npm i package.json: 사용자가 직접 관리하는 파일 package-.. 2021. 5. 24.