import Hero from '@ulixee/hero'; (async () => { const hero = new Hero({ connectionToCore: 'ws://192.168.3.13:1818' }); await hero.goto('https://filesite.io'); const title = await hero.document.title; console.log('Page title', title); await hero.close(); })();