UNPKG

ink

Version:
36 lines 1.25 kB
/* eslint-disable import-x/order */ // eslint-disable-next-line import-x/no-unassigned-import import './devtools-window-polyfill.js'; import WebSocket from 'ws'; // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-expect-error import devtools from 'react-devtools-core'; const isDevToolsReachable = async () => new Promise(resolve => { const socket = new WebSocket('ws://localhost:8097'); const timeout = setTimeout(() => { socket.terminate(); resolve(false); }, 2000); // Don't let the timeout keep the process alive on its own timeout.unref(); socket.on('open', () => { clearTimeout(timeout); socket.terminate(); resolve(true); }); socket.on('error', () => { clearTimeout(timeout); socket.terminate(); resolve(false); }); }); if (await isDevToolsReachable()) { // eslint-disable-next-line @typescript-eslint/no-unsafe-call devtools.initialize(); // eslint-disable-next-line @typescript-eslint/no-unsafe-call devtools.connectToDevTools(); } else { console.warn('DEV is set to true, but the React DevTools server is not running. Start it with:\n\n$ npx react-devtools\n'); } //# sourceMappingURL=devtools.js.map