강의

멘토링

로드맵

Inflearn Community Q&A

hwanghyekyung1000543's profile image
hwanghyekyung1000543

asked

Shallow GraphQL and Apollo

Server Component Modularization

const _ = require('lodash') 를 빼야 오류가 안납니다.

Written on

·

379

0

다운받은 소스에서 const _ = require('lodash') 를 빼야 오류가 안나네요... 

이건 어떤코드에요?

apollographqlnodejs

Answer 1

1

node 에 lodash 라는 라이브러리를 불러오는 코든데, 로대시를 node 에 설치하지 않아서 그런거에요.(아마도)
npm 이나 yarn 으로 lodash 를 찾아서 설치하시면 됩니다.

https://www.npmjs.com/package/lodash

위 링크를 참조하세요~

hwanghyekyung1000543's profile image
hwanghyekyung1000543

asked

Ask a question