Upon attempting to execute npm run dev following the installation of dependencies, I encountered an error that has left me puzzled. Despite trying various solutions found online, none have seemed to resolve the issue.
<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="8bfbe7fef8e3e4e7e2efeaf2f8a6eafbfbcbbaa5bba5bb">[email protected]</a> dev
> nuxt
"F\plusholidays-app\node_modules\.bin\" is not recognized as an internal or external command,
operable program or batch file.
internal/modules/cjs/loader.js:883
throw err;
^
Error: Cannot find module 'C:\Users\anyel\Documents\src\nuxt\bin\nuxt.js'
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:880:15)
at Function.Module._load (internal/modules/cjs/loader.js:725:27)
at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:72:12)
at internal/main/run_main_module.js:17:47 {
code: 'MODULE_NOT_FOUND',
requireStack: []
}
Please see below the contents of package.json:
{
"name": "plusholidays-app",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate"
},
...
}
I am eager to gain a better understanding of this issue, but I'm currently unsure of where to focus my attention next. Any guidance or recommendations would be greatly appreciated.