var liveServer = require("live-server"); var params = { port: 5023, host: "0.0.0.0", open: true, root: "test/integration", mount: [ ['/static', 'dist/ribbit'], ], logLevel: 2, // 0 = errors only, 1 = some, 2 = lots }; console.log(`\n🐸 Ribbit dev server running on http://localhost:${params['port']}`); liveServer.start(params);