Can someone help me with an issue I'm facing while trying to import jsonwebtoken
from this source? I keep receiving the error message
Cannot find module 'jsonwebtoken'
in my Ionic 3 app.
I've already tried running rm -rf node_modules
, npm install
, and yarn install
, but my app is still unable to locate this module. I have also verified that node_modules/@types/jsonwebtoken
has been downloaded and exists.
The way I am importing it is as follows:
import * as JWT from "jsonwebtoken";
Any assistance provided would be greatly appreciated. Thank you in advance.