英文:
ERROR: npm ERR! 404 Not Found - GET https://registry.npmjs.org/@type%2fjsonwebwebtoken - Not found
问题
我正在尝试在Visual Studio中的终端中添加这个包,但出现了一个错误,我一点头绪也没有,请帮忙解决这个问题。
npm install @type/jsonwebwebtoken graphql-request next-auth
npm ERR! code E404
npm ERR! 404 Not Found - GET https://registry.npmjs.org/@type%2fjsonwebwebtoken - Not found
npm ERR! 404
npm ERR! 404 '@type/jsonwebwebtoken@*' is not in this registry.
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.
请帮助解决这个问题。错误截图
英文:
I am trying to add this package in terminal in visual studio but there is a error and i am clueless please help. I coding for first time.
npm install @type/jsonwebwebtoken graphql-request next-auth
npm ERR! code E404
npm ERR! 404 Not Found - GET https://registry.npmjs.org/@type%2fjsonwebwebtoken - Not found
npm ERR! 404
npm ERR! 404 '@type/jsonwebwebtoken@*' is not in this registry.
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.
please help to resolve this issue.ss-of-the-error
答案1
得分: 1
我认为您想要安装此软件包的类型定义,即 npm i -D @types/jsonwebtoken
。
英文:
I think you mean to install the type definitions for this package, which is npm i -D @types/jsonwebtoken
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论