다음과 같은 에러 발생
MongoServerSelectionError: connect ECONNREFUSED ::1:27017
const client = await MongoClient.connect('mongodb://localhost:27017');
위의 코드를 아래와 같이 변경했더니 해결
const client = await MongoClient.connect('mongodb://127.0.0.1:27017');
출처 https://mingg123.tistory.com/129