admin管理员组文章数量:1345060
I'm trying to use bcryptjs
package in my React project. I'm getting following error:
Could not find a declaration file for module 'bcryptjs'. ‘…/node_modules/bcryptjs/index.js'
implicitly has an 'any' type.
Try `npm i --save-dev @types/bcryptjs` if it exists or add a new declaration (.d.ts)
file containing `declare module 'bcryptjs';`
Running npm i --save-dev @types/bcryptjs
makes import error to go away but when I try to use variables from the package, they are not found.
NodeJS version is node v16.17.0
and TS is use as well.
How can I fix it? Thanks
I'm trying to use bcryptjs
package in my React project. I'm getting following error:
Could not find a declaration file for module 'bcryptjs'. ‘…/node_modules/bcryptjs/index.js'
implicitly has an 'any' type.
Try `npm i --save-dev @types/bcryptjs` if it exists or add a new declaration (.d.ts)
file containing `declare module 'bcryptjs';`
Running npm i --save-dev @types/bcryptjs
makes import error to go away but when I try to use variables from the package, they are not found.
NodeJS version is node v16.17.0
and TS is use as well.
How can I fix it? Thanks
Share Improve this question edited Dec 26, 2024 at 11:14 ahuemmer 2,05913 gold badges27 silver badges36 bronze badges asked Nov 9, 2022 at 14:43 rumonrumon 6163 gold badges12 silver badges26 bronze badges 1- maybe this helps you?: stackoverflow./questions/49443296/… – Farbod Shabani Commented Nov 9, 2022 at 14:47
4 Answers
Reset to default 6Try using below option:
npm i bcryptjs @types/bcryptjs
and then, add the below line
import { hash, pare } from 'bcryptjs';
Make sure that "allowSyntheticDefaultImports"
is set to "true"
in your tsconfig.json
file
Try running the mand npm i --save-dev @types/bcryptjs
or yarn add --dev @types/bcryptjs
if you're using yarn to get the type definitions for this module.
I had a similar problem. To fix it, I first did:
yarn add bcryptjs @types/bcryptjs
And then removed the curly braces, when importing bcrypt. So, instead of:
import { bcrypt } from 'bcryptjs';
I did:
import bcrypt from 'bcryptjs';
Running
npm i --save-dev @types/bcryptjs
makes import error to go away..
#RUN IN ROOT FOLDER FIRST
本文标签: javascriptHow to use bcryptjs library with ES6 in NodeJSStack Overflow
版权声明:本文标题:javascript - How to use bcryptjs library with ES6 in NodeJS? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743788330a2539096.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论