gitextract_hn4k_4k7/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── 提交招聘网址.md │ │ ├── 提交问题和建议.md │ │ └── 提交面试真题.md │ └── workflows/ │ └── deploy-gh-pages.yml ├── .gitignore ├── .husky/ │ └── pre-commit ├── .prettierrc.js ├── .vitepress/ │ └── config.mts ├── README.md ├── docs/ │ ├── api-examples.md │ ├── before-interview/ │ │ ├── jd.md │ │ ├── post-resume.md │ │ ├── process.md │ │ └── write-resume.md │ ├── first-exam/ │ │ ├── ComputerBase.md │ │ ├── HTML-CSS.md │ │ ├── HTTP.md │ │ ├── JS.md │ │ └── TS.md │ ├── hr-exam/ │ │ ├── behavioural-test.md │ │ └── salary.md │ ├── markdown-examples.md │ ├── second-exam/ │ │ ├── HarmonyOS-application-development.md │ │ ├── engineering.md │ │ ├── mini-program.md │ │ ├── nodejs.md │ │ ├── react-inner.md │ │ ├── react-usage.md │ │ ├── vue-inner.md │ │ └── vue-usage.md │ ├── services/ │ │ ├── 1v1.md │ │ ├── group.md │ │ └── job.md │ ├── third-exam/ │ │ ├── ask-in-reply.md │ │ ├── cross-test.md │ │ ├── leader-test.md │ │ ├── project.md │ │ ├── scene.md │ │ └── system-design.md │ └── written-exam/ │ ├── JS-reading.md │ ├── JS-writing.md │ └── algorithm.md ├── index.md └── package.json