설명 없음

eventsource.json 6.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. {
  2. "title":"Server-sent events",
  3. "description":"Method of continuously sending data from a server to the browser, rather than repeatedly requesting it (EventSource interface, used to fall under HTML5)",
  4. "spec":"https://html.spec.whatwg.org/multipage/comms.html#server-sent-events",
  5. "status":"ls",
  6. "links":[
  7. {
  8. "url":"https://www.html5rocks.com/tutorials/eventsource/basics/",
  9. "title":"HTML5 Rocks tutorial"
  10. },
  11. {
  12. "url":"http://samshull.blogspot.com/2010/10/ajax-push-in-ios-safari-and-chrome-with.html",
  13. "title":"Blog post with demo"
  14. },
  15. {
  16. "url":"https://raw.github.com/phiggins42/has.js/master/detect/features.js#native-eventsource",
  17. "title":"has.js test"
  18. },
  19. {
  20. "url":"https://github.com/Yaffle/EventSource",
  21. "title":"Polyfill"
  22. }
  23. ],
  24. "bugs":[
  25. {
  26. "description":"Reportedly, CORS in EventSource is currently supported in Firefox 10+, Opera 12+, Chrome 26+, Safari 7.0+."
  27. },
  28. {
  29. "description":"In Firefox prior to version 36 server-sent events do not reconnect automatically in case of a connection interrupt ([bug](https://bugzilla.mozilla.org/show_bug.cgi?id=831392))"
  30. },
  31. {
  32. "description":"Firefox 52 and below do not support [EventSource in web/shared workers](https://bugzilla.mozilla.org/show_bug.cgi?id=1267903)"
  33. },
  34. {
  35. "description":"Antivirus software may block the event streaming data chunks."
  36. }
  37. ],
  38. "categories":[
  39. "JS API"
  40. ],
  41. "stats":{
  42. "ie":{
  43. "5.5":"n",
  44. "6":"n",
  45. "7":"n",
  46. "8":"n",
  47. "9":"n",
  48. "10":"n",
  49. "11":"n"
  50. },
  51. "edge":{
  52. "12":"n",
  53. "13":"n",
  54. "14":"n",
  55. "15":"n",
  56. "16":"n",
  57. "17":"n"
  58. },
  59. "firefox":{
  60. "2":"n",
  61. "3":"n",
  62. "3.5":"n",
  63. "3.6":"n",
  64. "4":"n",
  65. "5":"n",
  66. "6":"y",
  67. "7":"y",
  68. "8":"y",
  69. "9":"y",
  70. "10":"y",
  71. "11":"y",
  72. "12":"y",
  73. "13":"y",
  74. "14":"y",
  75. "15":"y",
  76. "16":"y",
  77. "17":"y",
  78. "18":"y",
  79. "19":"y",
  80. "20":"y",
  81. "21":"y",
  82. "22":"y",
  83. "23":"y",
  84. "24":"y",
  85. "25":"y",
  86. "26":"y",
  87. "27":"y",
  88. "28":"y",
  89. "29":"y",
  90. "30":"y",
  91. "31":"y",
  92. "32":"y",
  93. "33":"y",
  94. "34":"y",
  95. "35":"y",
  96. "36":"y",
  97. "37":"y",
  98. "38":"y",
  99. "39":"y",
  100. "40":"y",
  101. "41":"y",
  102. "42":"y",
  103. "43":"y",
  104. "44":"y",
  105. "45":"y",
  106. "46":"y",
  107. "47":"y",
  108. "48":"y",
  109. "49":"y",
  110. "50":"y",
  111. "51":"y",
  112. "52":"y",
  113. "53":"y",
  114. "54":"y",
  115. "55":"y",
  116. "56":"y",
  117. "57":"y",
  118. "58":"y",
  119. "59":"y",
  120. "60":"y",
  121. "61":"y"
  122. },
  123. "chrome":{
  124. "4":"n",
  125. "5":"n",
  126. "6":"y",
  127. "7":"y",
  128. "8":"y",
  129. "9":"y",
  130. "10":"y",
  131. "11":"y",
  132. "12":"y",
  133. "13":"y",
  134. "14":"y",
  135. "15":"y",
  136. "16":"y",
  137. "17":"y",
  138. "18":"y",
  139. "19":"y",
  140. "20":"y",
  141. "21":"y",
  142. "22":"y",
  143. "23":"y",
  144. "24":"y",
  145. "25":"y",
  146. "26":"y",
  147. "27":"y",
  148. "28":"y",
  149. "29":"y",
  150. "30":"y",
  151. "31":"y",
  152. "32":"y",
  153. "33":"y",
  154. "34":"y",
  155. "35":"y",
  156. "36":"y",
  157. "37":"y",
  158. "38":"y",
  159. "39":"y",
  160. "40":"y",
  161. "41":"y",
  162. "42":"y",
  163. "43":"y",
  164. "44":"y",
  165. "45":"y",
  166. "46":"y",
  167. "47":"y",
  168. "48":"y",
  169. "49":"y",
  170. "50":"y",
  171. "51":"y",
  172. "52":"y",
  173. "53":"y",
  174. "54":"y",
  175. "55":"y",
  176. "56":"y",
  177. "57":"y",
  178. "58":"y",
  179. "59":"y",
  180. "60":"y",
  181. "61":"y",
  182. "62":"y",
  183. "63":"y",
  184. "64":"y",
  185. "65":"y",
  186. "66":"y",
  187. "67":"y"
  188. },
  189. "safari":{
  190. "3.1":"n",
  191. "3.2":"n",
  192. "4":"n",
  193. "5":"y",
  194. "5.1":"y",
  195. "6":"y",
  196. "6.1":"y",
  197. "7":"y",
  198. "7.1":"y",
  199. "8":"y",
  200. "9":"y",
  201. "9.1":"y",
  202. "10":"y",
  203. "10.1":"y",
  204. "11":"y",
  205. "11.1":"y",
  206. "TP":"y"
  207. },
  208. "opera":{
  209. "9":"a",
  210. "9.5-9.6":"a",
  211. "10.0-10.1":"a",
  212. "10.5":"a",
  213. "10.6":"a",
  214. "11":"y",
  215. "11.1":"y",
  216. "11.5":"y",
  217. "11.6":"y",
  218. "12":"y",
  219. "12.1":"y",
  220. "15":"y",
  221. "16":"y",
  222. "17":"y",
  223. "18":"y",
  224. "19":"y",
  225. "20":"y",
  226. "21":"y",
  227. "22":"y",
  228. "23":"y",
  229. "24":"y",
  230. "25":"y",
  231. "26":"y",
  232. "27":"y",
  233. "28":"y",
  234. "29":"y",
  235. "30":"y",
  236. "31":"y",
  237. "32":"y",
  238. "33":"y",
  239. "34":"y",
  240. "35":"y",
  241. "36":"y",
  242. "37":"y",
  243. "38":"y",
  244. "39":"y",
  245. "40":"y",
  246. "41":"y",
  247. "42":"y",
  248. "43":"y",
  249. "44":"y",
  250. "45":"y",
  251. "46":"y",
  252. "47":"y",
  253. "48":"y",
  254. "49":"y",
  255. "50":"y",
  256. "51":"y",
  257. "52":"y"
  258. },
  259. "ios_saf":{
  260. "3.2":"n",
  261. "4.0-4.1":"y",
  262. "4.2-4.3":"y",
  263. "5.0-5.1":"y",
  264. "6.0-6.1":"y",
  265. "7.0-7.1":"y",
  266. "8":"y",
  267. "8.1-8.4":"y",
  268. "9.0-9.2":"y",
  269. "9.3":"y",
  270. "10.0-10.2":"y",
  271. "10.3":"y",
  272. "11.0-11.2":"y",
  273. "11.3":"y"
  274. },
  275. "op_mini":{
  276. "all":"n"
  277. },
  278. "android":{
  279. "2.1":"n",
  280. "2.2":"n",
  281. "2.3":"n",
  282. "3":"n",
  283. "4":"n",
  284. "4.1":"n",
  285. "4.2-4.3":"n",
  286. "4.4":"y",
  287. "4.4.3-4.4.4":"y",
  288. "62":"y"
  289. },
  290. "bb":{
  291. "7":"y",
  292. "10":"y"
  293. },
  294. "op_mob":{
  295. "10":"a",
  296. "11":"a",
  297. "11.1":"y",
  298. "11.5":"y",
  299. "12":"y",
  300. "12.1":"y",
  301. "37":"y"
  302. },
  303. "and_chr":{
  304. "64":"y"
  305. },
  306. "and_ff":{
  307. "57":"y"
  308. },
  309. "ie_mob":{
  310. "10":"n",
  311. "11":"n"
  312. },
  313. "and_uc":{
  314. "11.8":"y"
  315. },
  316. "samsung":{
  317. "4":"y",
  318. "5":"y",
  319. "6.2":"y"
  320. },
  321. "and_qq":{
  322. "1.2":"y"
  323. },
  324. "baidu":{
  325. "7.12":"y"
  326. }
  327. },
  328. "notes":"",
  329. "notes_by_num":{
  330. },
  331. "usage_perc_y":89.52,
  332. "usage_perc_a":0.03,
  333. "ucprefix":false,
  334. "parent":"",
  335. "keywords":"serversent,s-sent-events,server sent events,server side events",
  336. "ie_id":"serversenteventseventsource",
  337. "chrome_id":"5311740673785856",
  338. "firefox_id":"",
  339. "webkit_id":"",
  340. "shown":true
  341. }