I was trying to install package.json with npm init to install bootstrap in my folder but i am getting the error.
npm install [email protected] --save
I am new to this i can't exactly figure what i am doing wrong. I was following a tutorial whose link i'll attach along with screenshot of my console.
package
in yourpackage.json
is missing the apparently mandatory/
. As in, you'll get this error if your trying to list e.g.@my-nice-package
as adep
/dependency. This should be@my-nice-package/some-subpackage
since the whole point of having scoped packages is to 'subclass'/'subpackage' so to speak. – Ringtail