본문 바로가기
javascript

[NodeJs] 외부패키지 사용해보기

by 슈슈슉민 2023. 9. 8.

npm : Node Package Manager

Package 란? 

여러 가지 모듈들의 집합

scrpit 를 사용해서 npm을 설정할 수 있다.

그렇다면 외부 package 도 사용할 수 있지 않을까?

https://www.npmjs.com/

 

npm

Bring the best of open source to you, your team, and your company Relied upon by more than 17 million developers worldwide, npm is committed to making JavaScript development elegant, productive, and safe. The free npm Registry has become the center of Java

www.npmjs.com

 이 페이지를 들어가서 원하는 package를 사용해보자

 

vs 터미널에 입력하면 된다.
잘 작동되는 것을 확인할 수 있다.

'javascript' 카테고리의 다른 글

데이터 불러오기  (0) 2023.09.19
[NodeJs] 모듈 사용  (0) 2023.09.08
API  (0) 2023.09.08
async / await  (0) 2023.09.08
promise  (0) 2023.09.07