cannot import bcrypt
Answered
Southern Martin posted this in #help-forum
Southern MartinOP
13 Replies
haha @Southern Martin did you install that library in your project?
can you show me package json?
Southern MartinOP
okay then show me the source code of the file that has the error
Southern MartinOP
^ auth.ts
try install this
npm install --save @types/bcryptAnswer
Southern MartinOP
thank you! error went away. What is
@types/bcrypt?so basically it's about typescript. as you bootstrapped your project with typescript
when you install a library you also need to install typescript as well
@James4u try install this
`npm install --save @types/bcrypt`
Southern MartinOP
so this is the TS version of bcrypt?
hmm not ts version of bycrypt but typescript interfaces and types for the library
Southern MartinOP
got it, thank you!