learn-elm icon indicating copy to clipboard operation
learn-elm copied to clipboard

What is "npm install" ?

Open miguelmartins17 opened this issue 4 years ago • 3 comments

I apologize for asking what "npm install" is?

miguelmartins17 avatar Dec 21 '19 20:12 miguelmartins17

I've been reading the project and the term is not explained. And I was thinking for people who want to learn it would be important to have all the terms or abbreviations properly explained even in notes so that we can leave them more elucidated.

miguelmartins17 avatar Dec 21 '19 21:12 miguelmartins17

@miguelmartins17 npm is the Node Package Manager. In frontend development is common to have a package.json with all your javascript dependencies. In this case npm install will install these dependencies https://github.com/dwyl/learn-elm/blob/master/package.json#L5-L7 which contains the Elm platform.

gabrielperales avatar Dec 21 '19 23:12 gabrielperales

@miguelmartins17 npm install is a command that you run from a command-line/terminal to install a package or dependencies for a project.

papamarfo avatar Dec 22 '19 00:12 papamarfo