Complete the code to install Cypress using npm.
npm [1] cypressTo install Cypress, you use the command npm install cypress. This downloads and adds Cypress to your project.
Complete the command to save Cypress as a development dependency.
npm install cypress [1]save-devUse --save-dev to add Cypress as a development dependency in your package.json.
Fix the error in the command to install Cypress globally.
npm [1] -g cypressThe correct command to install globally is npm install -g cypress. The word 'install' must be spelled correctly.
Fill both blanks to complete the command that installs Cypress and saves it as a dev dependency.
npm [1] cypress [2]
The command npm install cypress --save-dev installs Cypress and saves it as a development dependency.
Fill all three blanks to write the command that installs Cypress, saves it as a dev dependency, and runs it immediately.
npm [1] cypress [2] && npx [3]
The command npm install cypress --save-dev && npx cypress installs Cypress, saves it as a dev dependency, and then runs Cypress using npx.