dev-server
1
总安装量
1
周安装量
#78079
全站排名
安装命令
npx skills add https://github.com/ag-grid/ag-charts --skill dev-server
Agent 安装分布
amp
1
cline
1
opencode
1
cursor
1
continue
1
kimi-cli
1
Skill 文档
Development Server Guide
This guide covers working with the local development server and build watch monitoring.
Astro Dev Server Checklist
- Prefer the shared HTTPS server on port 4600 when available.
- When using browser automation tools (claude-in-chrome), you may need to manually accept the self-signed certificate in Chrome once before automation will work. Navigate to
https://localhost:4600in the browser and accept the security warning. - Start a local watcher with
yarn nx devwhenever you need live rebuilds across packages and the website. packages/ag-charts-website/src/content/gallery/data.jsonowns gallery example metadata.packages/ag-charts-website/src/content/docs-nav/nav.jsonowns docs navigation structure.- Docs map from
packages/ag-charts-website/src/content/docs/${pageName}/index.mdocto/charts/javascript/${pageName}/.
Build Watch Status Monitoring
The yarn nx dev watch script (external/ag-shared/scripts/watch/watch.js) maintains a status file at node_modules/.cache/ag-watch-status.json for monitoring build state.
Check this file to:
- Ensure no builds are in progress before starting operations (status !=
BUILDING) - Monitor build health via
recentBuildsarray andtargetHistorystats - Track build progress after file changes
Key fields:
status:STARTING|RUNNING|BUILDING|IDLE|STOPPEDcurrentBuild: Active build details (only whenBUILDING)recentBuilds: Last 10 builds with status/duration/errorstargetHistory: Per-target success/failure counts
Usage:
# Wait for idle before operations
while [ "$(jq -r '.status' node_modules/.cache/ag-watch-status.json 2>/dev/null)" = "BUILDING" ]; do
sleep 2
done
# Start watch if needed
node external/ag-shared/scripts/watch/watch.js charts &
Production URLs
- The production base URLs for the Astro site is https://www.ag-grid.com/
Staging URLs
- The staging base URLs for the Astro site is https://charts-staging.ag-grid.com/
- NOTE: That the
/chartspath prefix is not used for paths on the staging site.
- NOTE: That the