Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/mitm/scripts/server.ts
1030 views
1
import { MitmProxy as MitmServer } from '../index';
2
3
(async function run() {
4
await MitmServer.start();
5
})().catch(error => {
6
// eslint-disable-next-line no-console
7
console.log('ERROR: ', error);
8
});
9
10