* init vless

* change to cdn for uuid

* add TODO

* add support for ipv4 and 6

* add support for ipv4 and 6

* add error handle

* add error handle

* add error handle

* add debug log

* add debug log

* add udp log

* add udp log

* update vless-js

* add doc

* add doc

* add doc

* remove log

* remove log

* remove log

* remove log
This commit is contained in:
zizifn
2022-12-11 22:56:56 +08:00
committed by GitHub
parent 3d4fbd40c9
commit ceefb92803
30 changed files with 573 additions and 79 deletions

View File

@@ -2,6 +2,7 @@
"recommendations": [
"nrwl.angular-console",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint"
"dbaeumer.vscode-eslint",
"firsttris.vscode-jest-runner"
]
}

21
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,21 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"request": "launch",
"name": "Launch Program",
"type": "pwa-node",
"program": "C:\\github\\edgetunnel\\apps\\deno-vless\\src\\main.ts",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "C:\\Users\\zizifn\\scoop\\shims\\deno.EXE",
"runtimeArgs": ["run", "--inspect", "--allow-all", "--unstable"],
"attachSimplePort": 9229,
"env": {
"UUID": ""
}
}
]
}

View File

@@ -1,5 +1,5 @@
{
"deno.codeLens.implementations": true,
"deno.codeLens.references": true,
"deno.enablePaths": ["apps/deno-bypass"]
"deno.enablePaths": ["apps/deno-bypass", "apps/deno-vless"]
}