Apache ECharts is a TypeScript-first charting library. Most runtime code lives in src/, while build scripts, test utilities, and packaging logic live alongside it in dedicated top-level folders.
One thing worth knowing early is that this repo is assembled through explicit registration and curated entry files. New runtime code often needs to be connected not only in its local module, but also through public exports or bundle entry files before it becomes part of a user-facing build.
When a task touches contribution workflow, prefer the repo's own contributor-facing documents over this summary:
CONTRIBUTING.md for general contribution guidancehttps://github.com/apache/echarts/wiki/How-to-make-a-pull-request for PR workflow, test expectations, and git message conventionshttps://github.com/apache/echarts/wiki/How-to-setup-the-dev-environment for local setup and zrender-linked developmenthttps://github.com/apache/echarts/wiki/Security-Checklist-for-Code-Contributors for security-sensitive API and API-design checks.github/pull_request_template.md for PR structure.github/workflows/ for CI expectationsThis file is only a short orientation note. If there is any conflict, the repo's dedicated contributor docs should win.
A few stable rules from the PR wiki are especially worth keeping in mind:
dist/, i18n/, and ssr/client/dist/.<type>(<scope>): <subject>. close #<issue_id>, with the issue-closing suffix omitted when there is no related issue.zrender code, the dev-environment wiki recommends using an absolute symlink at node_modules/zrender instead of npm link, because the watch flow depends on that setup.innerHTML, arbitrary DOM selectors, eval-like execution, raw style injection, and navigation-related APIs. If a feature must allow that kind of behavior, the security checklist expects clear documentation warnings.src/: built-in charts, components, coordinate systems, models, renderers, features, themes, and i18n sourcesrc/export/*.ts: public modular export surfacessrc/echarts.all.ts, src/echarts.common.ts, src/echarts.simple.ts, src/echarts.ts: main bundle entry filesextension-src/: separately packaged extensionsssr/client/src/: SSR client sourcebuild/: build, packaging, prepublish, and generation scriptstest/ut/spec/: Jest unit teststest/*.html: browser-based rendering and interaction casesIn general, src/ is the main source of truth for built-in library behavior.
Some top-level files and folders are generated or packaging-oriented:
i18n/*.js and i18n/*-obj.js are generated from src/i18n/*.tslib/, types/, extension/, ssr/client/lib/, ssr/client/types/, and root index*.js are produced by the build/prepublish flowdist/ contains build outputThe top-level theme/*.js files are packaged theme sources rather than normal src/theme/ runtime modules, so they are best treated separately from the generated locale/build artifacts above.
This repo exposes functionality at a few different layers:
src/src/export/*.tssrc/echarts*.tsBecause of that structure, changes to charts, components, renderers, or features sometimes need corresponding updates in exports or entry files to show up in the expected public build.
The repository uses two main testing styles:
test/ut/spec/ for logic-heavy behavior such as models, utilities, data transforms, and API behaviortest/ for rendering, layout, interaction, and visual regressionsFor local development, npm run dev starts the watch build and opens the test/ directory. New HTML cases can be scaffolded with npm run mktest.
npm run checktypenpm run lintnpm testnpm run test:dts:fastnpm run devThis repository consistently keeps ASF license headers in source and test files, and the codebase style is stable: single quotes, semicolons, and 4-space indentation are the norm. Small changes that follow nearby patterns tend to fit best here.