Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/replay/bin.ts
1028 views
1
#!/usr/bin/env node
2
3
import { openReplayApp } from './index';
4
5
openReplayApp('--sa-show-dashboard', `--sa-default-node-path="${process.execPath}"`).catch(
6
console.error,
7
);
8
9