QUESTION 1: Using which command do you find details about a specific npm command? Show Answer npm Junior
QUESTION 3: Using which command do you get a list of commands that are available in npm? Show Answer npm Junior
QUESTION 8: What command do you use to display a list of npm scripts that can be executed? Show Answer npm Junior
QUESTION 9: What npm command do you use to initialize a project folder and create a file package.json? Show Answer npm Junior
QUESTION 10: What npm command do you use to download a package from a registry? Show Answer npm Junior
QUESTION 15: Using npm, how do you run a script that is defined in the package? Show Answer npm Junior
QUESTION 17: What are scripts in a file package.json used for and how can they be helpful? Show Answer npm Senior
QUESTION 18: How do you find what scripts are defined in a project and can be executed using npm? Show Answer npm Senior
QUESTION 20: Using npm, how do you publish a package so it becomes available only to people in your organization? Show Answer npm Senior
QUESTION 22: How do you keep files out of your package when you publish a package using npm? Show Answer npm Senior
QUESTION 23: Using npm, how do you publish a package to the public repository? Show Answer npm Senior
QUESTION 24: What is a difference between installing npm module locally and globally? Show Answer npm Senior
QUESTION 25: Where can you find modules that the npm installed globally after you executed the npm install -g command? Show Answer npm Senior
QUESTION 28: How do you make npm show details about a specific npm command in a browser window? Show Answer npm Junior
QUESTION 37: Using npm, how can you display a list of all installed global packages? Show Answer npm Junior
QUESTION 40: Using npm, how do you check if there is a newer version of some the project package? Show Answer npm Mid-level
QUESTION 42: Where can you find modules that the npm installed locally after you executed the npm install command? Show Answer npm Junior
QUESTION 44: What information is stored about every dependency in the npm file package.json? Show Answer npm Junior
QUESTION 47: What are dependencies and devDependencies in package.json and what is the difference between them? Show Answer npm Junior