English | 中文
用浏览器访问 DolphinDB server 的 ip:端口
即可使用
如果需要通过 nginx 部署到子路径下(不建议,多转发一次会降低性能),可以参考 ./nginx.conf
在机器上安装最新版的 Node.js 及浏览器。
- windows: https://nodejs.org/en/download/prebuilt-installer/current
- linux: https://github.com/nodesource/distributions?tab=readme-ov-file#debian-and-ubuntu-based-distributions
# 安装 pnpm 包管理器
npm install -g pnpm
git clone https://github.com/dolphindb/web.git
cd web
# 国内网络推荐配置 registry
pnpm config set registry https://registry.npmmirror.com
# 安装项目依赖
pnpm install
# 将 .vscode/settings.template.json 复制为 .vscode/settings.json
cp .vscode/settings.template.json .vscode/settings.json
# 设置环境变量 NODE_OPTIONS='--experimental-transform-types'
# 1. 当前会话中设置
$env:NODE_OPTIONS = '--experimental-transform-types'
# 2. 添加到系统环境变量 (需重启系统)
# [System.Environment]::SetEnvironmentVariable('NODE_OPTIONS', '--experimental-transform-types', [System.EnvironmentVariableTarget]::User)
# 参考 package.json 中的 scripts
# 开发
pnpm run dev
# 扫描词条
pnpm run scan
# 手动补全未翻译词条
# 再次运行扫描以更新词典文件 dict.json
pnpm run scan
# lint
pnpm run lint
# lint fix
pnpm run fix