npm init -y
npm init -y is a quick way to generate a package.json file in your project directory without having to answer all the questions manually.
š¦ What it does:
When you run:
npm init -y
It creates a default package.json file that looks like this:
{
"na...
computer-science.hashnode.dev1 min read