시작 Highlighters에서 extension을 통해서 feed를 생성하면 다른 그룹원들에게 notification이 가는 기능을 구현하고자 한다. HTTP 기본적으로 client와 server는 http로 통신을 한다. http는 client에서 server에 request를 보내주면 그에 맞춰 server가 client에게 response를 전달하는 방식이다. server는 response를 보내면서 client와의 연결을 끊어버리고(connectionless), client의 상태를 보존하지 않는다(stateless). 그렇기 때문에 http 방식으로는 server가 먼저 client에 data를 전송할 수 없다. push notification은 특정 이벤트가 발생했을 때 그에 대한 정보를 s..