사용자 인증을 하기 위해서는 서버와 클라이언트간의 세션 유지가 필요하다.이걸 다 만들수는 없으니.. 패키지를 설치 하여 처리 하겠다. https://lucia-auth.com/ LuciaAn open source resource on implementing authentication with JavaScriptlucia-auth.com npm install lucia @lucia-auth/adapter-sqlite 위 명령어는 lucia 패키지를 설치하고, lucia가 배포한 패키지 중에서 sqlite를 사용하라는 의미이다. import { Lucia } from 'lucia';import { BetterSqlite3Adapter } from '@lucia-auth/adapter-sqlite';impo..