UNPKG

pixijs-remote-helper

Version:
18 lines (13 loc) 428 B
import ProxyServer from './ProxyServer'; let proxy; proxy = true; const host = window.PIXI_HELPER_PROXY_HOST || localStorage.getItem("pixiHelperProxyHost") || 'http://localhost:3010'; console.log('proxy is connecting to:', host); proxy = new ProxyServer(host, 'client-', 'mixin-'); proxy.connect(); proxy.cache = { // TODO need make it more better activeItem: null, freeze: false, search: "", }; export default proxy;