목록노드js (5)
코드 잡동사니
fish shell 을 사용하는데 nvm 사용하는 방법입니다. # fisher 설치 curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher # edc/bass 설치 fisher install edc/bass # 함수 추가 vim ~/.config/fish/functions/nvm.fish function nvm bass source ~/.nvm/nvm.sh --no-use ';' nvm $argv end # 실행 nvm ls 출처 https://eshlox.net/2019/01/27/how-to-use-nvm-with-fish-shell
Axios default Config { "transformRequest":[null], "transformResponse":[null], "timeout":0, "xsrfCookieName":"XSRF-TOKEN", "xsrfHeaderName":"X-XSRF-TOKEN", "maxContentLength":-1, "headers":{ "common":{ "Accept":"application/json, text/plain, */*" }, "delete":{}, "get":{}, "head":{}, "post":{ "Content-Type":"application/x-www-form-urlencoded" }, "put":{ "Content-Type":"application/x-www-form-urlen..
https://npm.community/t/npm-install-g-typescript-fails-with-npm-err-the-value-false-is-invalid-for-option-readablehighwatermark/8668/2 "npm install -G typescript" fails with "npm ERR! The value "false" is invalid for option "readableHighWaterMark" What is version of NodeJS you are using? npm.community 본인은 노드 버전 v10.16.0 LTS 버전을 사용중이고 window 환경입니다. cache.js 파일에 const MAX_MEM_SIZE = 25 * 1024 * 10..
아래 명령어만 쳐주면 프로젝트 최상위 경로 test 폴더 안에 있는 테스트 코드를 실행한다. mocha 아래와 같이 해주면 해당 경로에 있는 테스트 코드 실행 mocha ./src/test/ test.js 만 실행 mocha ./src/test/test.js test.js 안에 단위 테스트 1개만 실행 (describe 이름이나, it 에 정의한 이름) mocha ./src/test/test.js --fgrep "test1" test.js 안에 단위 테스트 1개만 실행 + 디버깅 (describe 이름이나, it 에 정의한 이름) mocha debug ./src/test/test.js --fgrep "test1"
npm install http-server --save--save 옵션 package.json/dependencies 에 저장이 된다. npm intstall http-server --save-dev-dev 옵션 package.json/devDependencies 에 저장이 된다. --save == -s 로도 사용가능--global == -g 로도 사용 가능 dependencies 와 devDependencies 의 차이 package.json 만 남겨두고 node_modules 를 전부 삭제했을 경우 npm install 을 하면 package.json 에 있는 dependencies 의 모듈들을 읽어서 install 을 하게 된다. npm install --production 을 실행하게 되면 dev..