Subscribe

웹소켓 알림 받기 (구독하기 - Subscribe)

Example

client.subscribe(function(err, result) {
  console.log(result);
});

아래는 수신하는 알림(Notification)의 예제입니다.

[
  'justsaying',
  {
    subject: 'exchange_rates',
    body: {
      MO_KRW: 100.000,
      MO_USD: 0.087534,
      BTC_MO: 124,700
    } 
  }
]

Last updated

Was this helpful?