Code Monkey home page Code Monkey logo

jwt-authentication-nodejs's Introduction

jwt-authentication-nodejs's People

Contributors

honglytech avatar

Stargazers

 avatar  avatar Ardeshir Valipoor avatar  avatar Rodrigo avatar Érik Albuquerque avatar Ciro Cesar Maciel avatar  avatar Moein Alkozay avatar Ioannis Merianos avatar Andrei Cimpoesu avatar Harith avatar Thoranin avatar Hirofumi Wakasugi avatar Igor Nunes avatar  avatar

Watchers

 avatar

jwt-authentication-nodejs's Issues

authToken.js : Cannot set headers after they are sent to the client

If I send request without access-token, then server crash with "Cannot set headers after they are sent to the client" error.
I think that's because the application set header twice when we send request without access-token.
So, it can be solved by appliying if-else statement like below code

const authToken = async (req, res, next) => {
  const token = req.header("x-auth-token");

  // If token not found, send error message
  if (!token) {
    res.status(401).json({
      errors: [
        {
          msg: "Token not found",
        },
      ],
    });
  } else {
    // Authenticate token
    try {
      const user = await jwt.verify(token, process.env.ACCESS_TOKEN_SECRET);
      req.user = user.email;
      next();
    } catch (error) {
      res.status(403).json({
        errors: [
          {
            msg: "Invalid token",
          },
        ],
      });
    }
  }
};

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.