Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- #cloudfront #s3 #html 확장자 없애기
- OOP
- this
- TypeScript
- ESLint
- NPM
- git pair
- 객체참조 #객체
- url #querystring
- 클로저
- 기후변화
- lightsail nodejs apache
- jest
Archives
- Today
- Total
Hello World...
nodemon , lowdb 관련 계속 실행 문제 본문
nodejs-express 에서 lowdb 를 설치하고 nodemon 을 실행하는데, 이상하게 nodemon 이 계속 리스타트 되는 문제가 있었다.
검색을 해보니 공식 깃허브에 해결 방법이 있었다 ^^ 노드몬이 db.json 를 계속 watching하고 있어서 생기는 문제 같다.
https://github.com/typicode/lowdb/issues/174
package.json 을 가서 start 에서 --ignore db.json 를 추가 해주면 된다.
"scripts": {
"start": "nodemon server/express-app.js --ignore db.json"
}
'node.js' 카테고리의 다른 글
[코작作] nodejs 콜백(callback) 비동기 처리 공부! (0) | 2020.02.16 |
---|---|
nodejs - mysql 간단한 연동 공부 (0) | 2020.02.11 |
nodejs lowdb 테스트 중 return (0) | 2020.01.17 |
nodejs url, querystring module 예제 (0) | 2020.01.16 |
postman json 형식으로 post 요청 (0) | 2020.01.16 |
Comments