nodejs-book
nodejs-book copied to clipboard
Node.js교과서 소스 코드
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.1 to 1.14.9. Commits 13136e9 Release version 1.14.9 of the npm package. 2ec9b0b Keep headers when upgrading from HTTP to HTTPS. 5fc74dd Reduce nesting. 3d81dc3 Release version...
134쪽 3장 prime-worker.js 파일 if(isMainThread){} 안에 있는 const range = Math.ceil((max - min) / threadCount); 문장. ceil이 아니라 floor인 것 같습니다. 확인 바랍니다. threadCount = 8, max = 11, min...
p.476 밑에 express-rate-limit 태그가 있긴 하지만 내용이 없어서 일단 올려봅니다. exports.apiLimiter = new RateLimit({}) 구문에서 클래스 선언인 new 를 붙이면 에러가 나옵니다. RateLimit({})는 함수 형식이라 new를 빼야 됩니다. express-rate-limit 제작자도...