티스토리 뷰

WebApp

[ReactJS] 개발 환경

OpusK 2022. 2. 27. 14:04
반응형

NodeJS & npm 설치

  • NodeJS: For local JS engine
 

Download | Node.js

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

nodejs.org

  • npm: package manager
 

Downloading and installing Node.js and npm | npm Docs

Documentation for the npm registry, website, and command-line interface

docs.npmjs.com


npx 패키지 설치

  • npm package binary들을 실행하기 위함
npm install -g npx
 

npx

execute npm package binaries. Latest version: 10.2.2, last published: 2 years ago. Start using npx in your project by running `npm i npx`. There are 101 other projects in the npm registry using npx.

www.npmjs.com


yarn 패키지 설치

  • npm을 보조하는 패키지: yarn으로 패키지 설치/관리하자
    • Fast (using cache)
    • Reliable (using yarn.lock)
    • Secure (using checksums)
npm install -g yarn
 

yarn

📦🐈 Fast, reliable, and secure dependency management.. Latest version: 1.22.17, last published: 4 months ago. Start using yarn in your project by running `npm i yarn`. There are 1031 other projects in the npm registry using yarn.

www.npmjs.com


VS Code Extention


 

반응형

'WebApp' 카테고리의 다른 글

[ReactJS] 리액트? 메인 컨셉/설계 이야기  (1) 2022.02.27
댓글