JavaScript
-
Chrome cross origin iframe remove alert(), confirm(), and prompt issueJavaScript 2021. 7. 27. 15:34
현재 최신 크롬 버전(92.0.4515.107 이상) 부터 크롬에서 cross origin iframe 의 경우에 alert, confirm, prompt 를 지원하지 않게 되었고, iframe 내에서 alert, confirm, prompt를 호출할 경우 아래와 같은 오류 내용을 확인 할 수 있습니다. 오류 내용 : A different origin subframe tried to create a JavaScript dialog. This is no longer allowed and was blocked. See https://www.chromestatus.com/feature/5148698084376576 for more details.A different origin subframe tried to..
-
[Node.js] PM2 Cluster 모드에서 Log4js logging 처리하기JavaScript/Node.js 2018. 12. 14. 15:22
Node에서 프로세스 관리 모듈인 PM2를 사용하여 cluster 환경 구성시에, Log4js logging 처리가 되지 않는 경우가 발생한다. 이경우 pm2-intercom 설치를 통하여 cluseter내의 instance들에게 broadcast하여 logging 처리가 가능하게 할 수 있습니다. #설정 0. pm2 설치>> npm install pm2 -g 1. pm2-intercom 설치>> pm2 install pm2-intercom 2. log4js config에 아래 2개 내용 추가>> pm2: true>> pm2InstanceVar: 'INSTANCE_ID' // Log4js Settingvar log4js = require('log4js');log4js.configure({ appender..