Error: ENOENT: no such file or directory, open angular code example

Example 1: An unhandled exception occurred: Script file ../node_modules/jquery/dist/jquery.min.js does not exist.

"./node_modules/jquery/dist/jquery.js",
"./node_modules/tether/dist/js/tether.js",
"./node_modules/bootstrap/dist/js/bootstrap.js"

Example 2: ENOENT, no such file or directory

Have you created a package.json file? Maybe run this command first again.

C:\Users\Nuwanst\Documents\NodeJS\3.chat>npm init

It creates a package.json file in your folder.

Then run,

C:\Users\Nuwanst\Documents\NodeJS\3.chat>npm install socket.io --save

The --save ensures your module is saved as a dependency in your package.json file.

Example 3: Error: ENOENT: no such file or directory, open

cloudinary.config({
  cloud_name: process.env.CLOUDINARY_NAME,
  api_key: process.env.CLOUDINARY_API_KEY,
  api_secret: process.env.CLOUDINARY_API_SECRET,
  shorten: true,
  secure: true,
  ssl_detected: true
})

const response = await cloudinary.uploader.upload(req.file.path)
console.log(response)