events 모듈 - Nodejs
const EventEmitter = require('events'); const myEvent = new EventEmitter(); myEvent.addListener('방문', () => { console.log('방문해주셔서 감사합니다.'); //res.sendFile(html파일) }) //.addListener와 .on은 같은 기능이다. //.on을 쓰는 것이 효율적일 것이다. //하나의 같은 이벤트에 여러개의 .on을 붙여도 된다. myEvent.on('종료', ()=> { console.log('안녕히가세요.'); }) myEvent.on('종료', ()=> { console.log('또 방문해주세요.'); }) //.once는 특정 이벤트에 대하여 한번만 실행된다. myEvent.once..
Programming/Concept
2019. 5. 14. 17:50