/
githubmirror
/
socket.io
Обзор
Документация
Войти
/
githubmirror
/
socket.io
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/basic-crud-application/vue-client/src/socket.js
7 строк
243 B
Damien Arrachequesne
docs(examples): add Vue client with CRUD example
22 ноя 2023, 12:12
Не верифицирован
22 ноя 2023, 12:12
efb5c21
Код
Авторство
О чём код?
import { io } from "socket.io-client"; // "undefined" means the URL will be computed from the `window.location` object const URL = process.env.NODE_ENV === "production" ? undefined : "http://localhost:3000"; export const socket = io(URL);