[오류 해결] TypeError: Cannot read properties of undefined (reading 'prototype')

June·2022년 1월 22일

Monster 과제를 하다가 서버 데이터를 호출하는 도중에 위와 같은 에러가 떴다.

열심히 구글링을 해보니, 브라우저에서는 node.js기반의 익스프레스 모듈을 인식하지 못하기 때문에 express 모듈을 지워야 한다고 한다.

import { response } from 'express'

vs 코드로 돌아가서 살펴보니 express 모듈 발견할 수 있었다.

import res from 'express/lib/response';

주석처리하니 오류 바로 해결 완료!

profile
천천히, 꾸준히 :)

0개의 댓글