* 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

@@ -0,0 +1,21 @@
{
"name": "deno-vless",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/deno-vless/src",
"projectType": "application",
"targets": {
"run": {
"executor": "nx:run-commands",
"options": {
"command": "deno run --allow-net --allow-env --allow-write apps/deno-vless/src/main.ts "
}
},
"serve": {
"executor": "nx:run-commands",
"options": {
"command": "deno run --allow-net --allow-write --allow-env --watch apps/deno-vless/src/main.ts "
}
}
},
"tags": []
}