@0x-jerry/v2ray-schema 中文文档教程

发布于 3年前 浏览 23 更新于 3年前

V2ray config json schema

根据 V2Ray.config.d.ts 自动生成 V2Ray.config.schema.json

Raw schema content: https://raw.githubusercontent.com/0x-jerry/v2ray-config-json-schema/master/V2Ray.config.schema.json

使用方式

Visual Studio Code

官方文档: json-schemas-and-settings

示例:

在项目中添加 .vscode/settings.json 配置文件,并设置 json.schemas 字段如下:

{
  "json.schemas": [
    {
      "fileMatch": ["/*.json", "/*.jsonc"],
      "url": "https://raw.githubusercontent.com/0x-jerry/v2ray-config-json-schema/master/V2Ray.config.schema.json"
    }
  ]
}

Nodejs

安装:yarn add @0x-jerry/v2ray-schema

typescript:

import { IV2Ray } from '@0x-jerry/v2ray-schems'

const v2raySchema: IV2Ray = {
  ...
}

Deno

import { IV2Ray } from 'https://raw.githubusercontent.com/0x-jerry/v2ray-config-json-schema/master/v2ray-schema.ts'

const v2raySchema: IV2Ray = {
  ...
}
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文