Skip to content

Commit

Permalink
feat: headless-browser adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
rocka committed Jan 21, 2024
1 parent 306d2b3 commit 0ae1523
Show file tree
Hide file tree
Showing 10 changed files with 860 additions and 1 deletion.
1 change: 1 addition & 0 deletions headless-browser/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
7 changes: 7 additions & 0 deletions headless-browser/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { startServer } from './src/server.js';
import { startBrowser} from './src/browser.js';

const port = Number.parseInt(process.env.PORT) || 7778;

startServer(port);
startBrowser(port);
Loading

0 comments on commit 0ae1523

Please sign in to comment.