# NVM(Node Version Manager)- nvm 설치 방법(1)https://github.com/coreybutler/nvm-windows/releases (nvm-setup.zip) All version: Index of /download/release/ (nodejs.org) Releases · coreybutler/nvm-windowsA node.js version management utility for Windows. Ironically written in Go. - coreybutler/nvm-windowsgithub.com - 버젼확인 (현재 버젼에 "*" 표기된다)nvm ls- 특정버젼 설치nvm install 16.15.1- 특정 버젼 이동nvm use 16.15.1- 특정..
코딩 툴의 이해 및 툴확장 (brackets, atom, VS code) / 각각 1시간 툴의 장단점, 플러그인 사용 Brackets: 서비스 종료 ATOM VS Code, (https://demun.github.io/vscode-tutorial/) 구조적인 코딩 방법, 네이밍 / 1시간 .con-panel .con-header, con-body, con-footer 네이밍규칙 jQuery 활용 및 확장 / 1 시간 선택자, 메서드 sass 문법 및 활용 / 1 시간 중첩 : {}; 변수 : $G-width: 1200px; 임포트 : @import 'base"; | @import url('base.css'); 믹스인 : @mixin funcitonName($param){}; | @include funct..
path & __dirname webpack.config.js path사용 const path = require("path"); module.exports = { mode: "development", entry: { main: "./src/app.js", }, output: { filename: "[name].js", path: path.resolve("./dist"), }, } __dirname사용 module.exports = { mode: "development", entry: { main: "./src/app.js", }, output: { filename: "[name].js", path: __dirname + '/dist', }, }
설치 [https://nodejs.org/en/](nodejs 설치하면(8.x) npm 자동설치) npm install yarn window : `.msi` 설치 URL : install download) nodejs update (mac 'sudo'필요) 버젼확인 node -v cache 삭제 : 캐시가 있을경우 출돌 날수있음. npm cache clean -f n 모듈 설치 npm install -g n n 모듈로 nodejs 설치하기 (latest, stable, lts, 버젼) n "버젼" 특정버젼 삭제 n rm "버젼" init (-y : option pass) npm init -y yarn init -y pnpm init 버젼 확인 npm -version | npm -v yarn -versio..
설치 설명 : http://people.apache.org/~pmuellr/weinre/docs/latest/ 0. nodejs 설치후 ( https://nodejs.org/en/ ) 1. weinre 전역설치npm -g install weinre 2. weinre 실행 - (--boundHost : 내컴퓨터 아이피 or 없으면 localhost 로열림) - (--httpPort : 원하는 포트번호 or 없으면 8080 으로 열림 )weinre --boundHost 000.000.000.000 --httpPort 0000 크롬브라우져 : 안드로이드 모바일 테스트 설명 : https://nigayo.github.io/javascript/2014/03/14/Chrome_Android_remote_debugg..
설치 설명: https://www.npmjs.com/package/live-server 0. nodejs 설치후 ( https://nodejs.org/en/ ) 1. live-server 전역 설치npm install -g live-server 2. 해당 프로젝트 root 에서 live-server 실행 - 옵션값을 입력하지 않으면 기본값으로 열림 - (--host= 내아이피 넣으면 외부접근 가능, 단 공유기등 보안 열려 있어야함 ) - ( --port= 열릴 포트 번호)live-server --host=000.000.000.000 --port=0000
1. 설치 : https://code.visualstudio.com/# 단축키 window : https://code.visualstudio.com/shortcuts/keyboard-shortcuts-windows.pdf VScode-shortcuts-windows.pdfhttps://demun.github.io/vscode-tutorial/shortcuts/ # 단축키 Mac : https://code.visualstudio.com/shortcuts/keyboard-shortcuts-macos.pdf # emmet : https://docs.emmet.io/cheat-sheet/ # 작업 ( shift+ctrl+p )- 작업구성 > tasks : Configure Default T..
- Total
- Today
- Yesterday