본문 바로가기
IT/Nodejs

RESTful API 에 JWT 를 활용하여 보안강화 하기

by DOSGamer 2020. 2. 17.
반응형

https://www.freecodecamp.org/news/securing-node-js-restful-apis-with-json-web-tokens-9f811a92bb52/

 

Securing Node.js RESTful APIs with JSON Web Tokens

Have you ever wondered how authentication works? What’s behind all the complexity and abstractions. Actually, nothing special. It’s a way of encrypting a value, in turn creating a unique token that users use as an identifier. This token verifies your ident

www.freecodecamp.org

 

백엔드를 Nodejs 기반으로 가고 있어서

API 를 어떻게 보안강화를 해야 하나 고민하던 초기 시절에 접한 내용입니다

 

현재는 JWT 를 활용해서 보안 처리를 하고 있고

서비스 구축 후에 ISMS 관련 보안 점검을 해보려고 합니다

 

개발할 때 연결이 쉬워지니 보안 강화 문제로 어려워 지내요

보안은 그렇다고 무시할 수 없는 영역이기에 관리자 라면 항상 염두해주고 

개발 서비스들을 점검해봐야 합니다.

반응형