Skip to content Skip to sidebar Skip to footer

Es6 Imports For Jwt

I'm making a nodeJS web app and I'm using JWT for authentication. All my work is in ES6 modules and I wanted to import JWT in the same way, but apparently it isn't yet supported by

Solution 1:

Could you try something:

  1. Create a folder
  2. Do npm init
  3. Create a file app.js
  4. install json web token npm i jsonwebtoken
  5. Go to package.json and add "type": "module"
  6. write in your app.js this here: import jwt from "jsonwebtoken"
  7. Execute it: node --experimental-modules app.js

Tell me then if you get an error

Solution 2:

Your gonna need to import it and then assign it like this

import jwt from'jsonwebtoken';
const { sign, verify } = jwt;
const token = sign({"d":"dd"}, "secret", {expiresIn: 300})
console.log(token);
const verifycode = verify(token, "secret");
console.log(verifycode);

Post a Comment for "Es6 Imports For Jwt"