Web Dev/4. Node Js 관련
-
Npx to run command of locally installed packagesWeb Dev/4. Node Js 관련 2021. 2. 23. 16:17
www.freecodecamp.org/news/npm-vs-npx-whats-the-difference/ npm vs npx — What’s the Difference? If you’ve ever used Node.js, then you must have used npm for sure. npm (node package manager) is the dependency/package manager you get out of the box when you install Node.js. It provides a way for developers to install packages both globally and locall www.freecodecamp.org NPX 가 그저 module 설치 안하고 run ..
-
The Node.js Event Loop, Timers, and process.nextTick() 문서 읽고 알게 된 내용Web Dev/4. Node Js 관련 2021. 2. 15. 14:22
읽은 문서 nodejs.org/en/docs/guides/event-loop-timers-and-nexttick/ The Node.js Event Loop, Timers, and process.nextTick() | Node.js Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. nodejs.org 정리하기 전에 - Call stack: JavaScript keeps track of what function is being run and where it was run from. Whenever a function is to be run, it's added to the call stack. - Callback queue: a..
-
nvm과 voltaWeb Dev/4. Node Js 관련 2021. 1. 26. 20:53
정리 - nvm: 여러가지 노드 버전을 관리하는 느낌. 버전을 바꾸면 node 폴더 경로를 바꾸는 느낌이다. - volta: rust로 되있어서 엄청 빠르고, 쓰는것마다 설치하는것. 실행되면 알맞은 버전의 노드를 설치한다. 명령어가 따로 없다. 그리고 node 와 yarn에서 둘다 작동한다. 글구 엄청 빠르다 - volta를 쓰라고 한다. Volta vs NVM 1. Volta 공식 사이트: volta.sh/ Volta - The Hassle-Free JavaScript Tool Manager ⚡ Universal No matter the package manager, Node runtime, or OS, one command is all you need: volta install. volta.sh 2...