How to install npm and nodejs? / npm 설치 / nodejs 설치
2017. 10. 12. 00:06ㆍPrograming/Mobile App _Web
What is npm?
npm makes it easy for JavaScript developers to share and reuse code, and makes it easy to update the code that you’re sharing, so you can build amazing things.
Install npm
npm is installed with Node.js
npm is distributed with Node.js- which means that when you download Node.js, you automatically get npm installed on your computer.
Download Node.js and npm
https://nodejs.org/en/
Check that you have node and npm installed
To check if you have Node.js installed, run this command in your terminal:
# node -v
v6.11.4
To confirm that you have npm installed you can run this command in your terminal:
# npm -v
3.10.10
'Programing > Mobile App _Web' 카테고리의 다른 글
[HTML] 초보자에게 좋은 무료 편집기 (0) | 2018.09.08 |
---|---|
npm modules 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다 (0) | 2017.10.12 |
Hostinger - Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2 "No such file or directory") (0) | 2017.02.28 |
[JavaScript] Accordion with symbols (0) | 2016.03.03 |
JavaScript Progress Bar (0) | 2016.03.03 |