Quiz: npm and Package Management
Test your understanding of npm and package management in Node.js with this comprehensive quiz.
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
How can we configure npm to run the application using the command npm start
?
A.
Add "start": "node index.js"
to the scripts section in package.json
.
B.
Set "main": "index.js"
in package.json
.
C.
Use the npm
command without adding anything to package.json
.
D.
Add "type": "module"
to package.json
.
1 / 5
...