Skip to content

dolphindb/web

Repository files navigation

DolphinDB Web

DolphinDB Web

vscode extension installs

English | 中文

DolphinDB database web management interface

Use a browser to access ip:port of DolphinDB server to use

If you need to deploy to a subpath through nginx (not recommended, one more forwarding will reduce performance), you can refer to ./nginx.conf

Development

Install the latest version of Node.js and browser on your machine.

# Install the pnpm package manager
npm install -g pnpm

git clone https://github.com/dolphindb/web.git

cd web

# Install project dependencies
pnpm install

# Copy .vscode/settings.template.json to .vscode/settings.json
cp .vscode/settings.template.json .vscode/settings.json

# Set environment variable NODE_OPTIONS='--experimental-transform-types'

# Refer to scripts in package.json

# development
pnpm run dev

# scan entries
pnpm run scan
# Manually complete untranslated entries
# Run the scan again to update the dictionary file dict.json
pnpm run scan

#lint
pnpm run lint

#lint fix
pnpm run fix