프론트엔드-코드/Node.js 27

dist 폴더에 자동으로 생성되지 않는 파일 자동으로 카피해서 넣게 해주기

dist가 최종적으로 빌드된 파일들이 있는 곳인데, 안들어가는게 있을 때가 있다. 그럴 때 억지로 넣거나 그러면 경로문제나 그런 게 있을 수 있다. parcel plugin static files copy 이거 이용하면 된다. { "name": "parcel_project", "version": "1.0.0", "description": "this is package of parcel-bundler", "main": "index.js", "scripts": { "serve": "parcel index.html", "build": "parcel build index.html" }, "keywords": [], "author": "", "license": "ISC", "devDependencies": { "..

1. Node.js 프로젝트 생성

node js 설치 npm 설치 nvm 설치 프로젝트 할 곳에 npm init -y -y는 yes 그러면 { "name": "parcel_project", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [], "author": "", "license": "ISC" } 이렇게 생성됨. main이 index.html 같은 거임. 저기다 파일 이름 넣어주면 됨. "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, 우리가 npm 관련해서..

node.js 패키지 생성

패키지 만들 폴더에 npm init -y Wrote to E:\webclass\day2\package.json: { "name": "day2", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [], "author": "", "license": "ISC" } 위에 "" 안에가 명령어 들인데 npm run 명령어 npm run test 로 실행가능 명령어 바꿀 수 있음. package.json 파일이 패키지 파일인데 이거 수정하면 바꿀 수 있음. "scripts": { "test": "echo \"Erro..