No such file or directory
파일이 있는데 에러가 난다면 파일명 철자를 맞춰보자... 의외로 단순한데서 오타가 날 가능성이 많다.
ENOENT: No such file or directory# Commonly raised by fs operations; a component of the specified pathname does not exist -- no entity (file or directory) could be found by the given path.
예외 처리
try { key = fs.readFileSync('./ssl/ssl.key', 'utf-8'); } catch (e){ console.log(e); }
반응형
'lang > node' 카테고리의 다른 글
Node.js Arguments (0) | 2016.01.28 |
---|---|
nodejs mysql multiquerys (0) | 2016.01.18 |
socket.io room join socket.id express api On Nodejs 5.1.0 + socket.io 1.3.7 (0) | 2015.12.17 |
Nginx LoadBalancer + Nodejs socket.io (0) | 2015.12.16 |
socket.io 1.3.7 cluster On Nodejs 5.1.0 (0) | 2015.12.10 |