LaravelRUS / laravel.ru

Please use https://github.com/LaravelRUS/laravel.su instead
Other
62 stars 13 forks source link

Добавить WebSocket #69

Closed vladshcherbin closed 7 years ago

vladshcherbin commented 7 years ago

HTTP конечно неплохо, но WebSocket роднее, приятнее и быстрее.

SerafimArts commented 7 years ago

Сервер сделан, nginx прокси настроен, всё летает (кроме MacOS ❤️ ).

Example:

let ws = new WebSocket('wss://new.laravel.su:8080');

ws.onmessage = e => {
    console.log("------ RESPONSE: -------", JSON.parse(e.data));
    ws.close();
};

ws.onopen = e => ws.send(JSON.stringify({id: 1, query: 'query asd { users {id, name}}'}));
Dragomeat commented 7 years ago

@SerafimArts а сокеты также на пыхе?

SerafimArts commented 7 years ago

@Dragomeat конечно =)

SerafimArts commented 7 years ago

отклонено, код вырезан, пока нет необходимости (по обоюдному согласию).