Push

    node.js를 이용하여 IOS 푸시 보내기

    PUSH란? 서버에서 정보를 클라이언트로 강제 전달하는 서비스. Apple의 APNS(Apple Push Notification Service) Google의 GCM(Google Cloud Messaging) installation $ npm install apns -sAPI /* notification.payload : Push payload (json타입) notification.badge : 뱃지 숫자 번호 notification.sound : Push 알림음 notification.alert : Push 메시지 텍스트 notification.device : Push 받을 대상 notification.encoding : 메시지 인코딩 타입 (기본 : UTF-8) */const apns = requi..