Flow

Untitled

Untitled

Express App 생성

프로젝트 폴더 생성

package.json 파일 생성

yarn init -y

필요한 모듈 설치

yarn add dotenv express jsonwebtoken nodemon

dotenv

환경 변수 생성을 위한 모듈

jsonwebtoken

토큰 생성을 위한 모듈

express 코드 작성

// server.js

const express = require("express");
const app = express();

app.use(express.json());

app.listen(3000, () => {
  console.log(`listening on http://localhost:3000`);
});
# .env

ACCESS_TOKEN_SECRET="JWT_SECRET"

login api


const jwt = require("jsonwebtoken"); // jsonwebtoken 모듈 import
require("dotenv").config(); // dotenv 모듈 import

app.post("/login", (req, res) => {
  const username = req.body.username;
  const user = { name: username };

  const accessToken = jwt.sign(user, process.env.ACCESS_TOKEN_SECRET);

  res.json({ accessToken: accessToken });
});

스크린샷 2023-11-20 오후 3.06.57.png

get post api