wasup

Node.js 설치하기 본문

NodeJs

Node.js 설치하기

wasupup 2022. 8. 27. 22:11
반응형

node.js설치

https://nodejs.org/ko/

 

Node.js

Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.

nodejs.org






 

auto npm modules need to be compiled from c/c++ when installing
auto npm 모듈은 설치할 때 c/c++에서 컴파일해야 합니다.

 

if you want to be able to install such modules, some tools need to be installed 
(python and visual studio build tools)

이러한 모듈을 설치하려면 일부 도구를 설치해야합니다
(python 및 Visual Studio 빌드 도구)

automatically install the necessary tools.

필요한 도구를 자동으로 설치합니다.


note that this will also install chocolatey. 

이것은 또한 초콜릿을 설치합니다. 

 

the script will pop-up in a new window after the installation completes.

설치가 완료되면 스크립트가 새 창에 팝업됩니다.





패키지 설치

npm install express --save

혹은

npm i espress

  • 옵션이 없으면 --save가 기본


기본 구조를 만들어주는 espress-generator

npm i espress-generator -g


pm2패키기 설치

  • 변경 사항 저장시 웹을 껐다 켜주는 도구
  • 비슷한 도구 : nodemon

npm i pm2

npm i

npm audit fix --force

 


반응형

'NodeJs' 카테고리의 다른 글

node.js Note 진행할 목록  (0) 2022.08.29
Node.js nodemon  (0) 2022.08.29
Node.js 서버만들어보기  (0) 2022.08.28
Comments