From 4fabaa217c1d4be09bc69be07148687a03d884ed Mon Sep 17 00:00:00 2001 From: hzjzwcu <1127781044@qq.com> Date: Sun, 3 Mar 2024 11:55:55 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E4=BB=93=E5=BA=93=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/settings.json | 2 +- README.md | 2 +- docs/.vitepress/config.mts | 6 +++--- docs/index.md | 2 +- .../\344\271\246\347\255\276.md" | 16 ---------------- ...1\243\351\235\242\350\257\225\351\242\230.md" | 14 +++++++++++++- 6 files changed, 19 insertions(+), 23 deletions(-) rename "docs/\351\235\242\350\257\225\351\242\230/2023\351\235\242\350\257\225\351\242\230\346\225\264\347\220\206.md" => "docs/\351\235\242\350\257\225\351\242\230/\345\276\205\345\275\222\346\241\243\351\235\242\350\257\225\351\242\230.md" (92%) diff --git a/.vscode/settings.json b/.vscode/settings.json index 4336df0..a225795 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,5 @@ { "yaml.schemas": { - "https://json.schemastore.org/github-workflow.json": "file:///d%3A/Study/WSHY/.github/workflows/deploy.yml" + "https://json.schemastore.org/github-workflow.json": "file:///d%3A/Study/wshy-docs/.github/workflows/deploy.yml" } } \ No newline at end of file diff --git a/README.md b/README.md index 520ef7c..32f19b4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# WSHY +# wshy-docs - 安装依赖:`npm run docs:dev` - 打包:`npm run docs:build` - 预览打包后的网站:`npm run docs:preview` diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index 360a6ce..8207091 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -3,9 +3,9 @@ import AutoSidebar from 'vite-plugin-vitepress-auto-sidebar'; // https://vitepress.dev/reference/site-config export default defineConfig({ - title: "WSHY", + title: "wshy-docs", description: "A VitePress Site", - base: '/WSHY/', + base: '/wshy-docs/', themeConfig: { // https://vitepress.dev/reference/default-theme-config nav: [ @@ -22,7 +22,7 @@ export default defineConfig({ { text: 'Vue', link: '/Vue/项目起步/vite+ts项目起步.md' }, ], socialLinks: [ - { icon: 'github', link: 'https://github.com/hzjzwcu/WSHY' } + { icon: 'github', link: 'https://github.com/hzjzwcu/wshy-docs' } ] }, vite: { diff --git a/docs/index.md b/docs/index.md index 18ec758..076af46 100644 --- a/docs/index.md +++ b/docs/index.md @@ -3,7 +3,7 @@ layout: home hero: - name: "WSHY" + name: "wshy-docs" text: Talk is cheap. Show me the code. tagline: 代码胜于雄辩 actions: diff --git "a/docs/\345\205\266\344\273\226/\345\244\207\345\277\230\345\275\225/\344\271\246\347\255\276.md" "b/docs/\345\205\266\344\273\226/\345\244\207\345\277\230\345\275\225/\344\271\246\347\255\276.md" index 9c8ec4b..b4cb45c 100644 --- "a/docs/\345\205\266\344\273\226/\345\244\207\345\277\230\345\275\225/\344\271\246\347\255\276.md" +++ "b/docs/\345\205\266\344\273\226/\345\244\207\345\277\230\345\275\225/\344\271\246\347\255\276.md" @@ -24,10 +24,6 @@ [机场测速简介](https://www.duyaoss.com/)、[ikuuu](https://ikuuu.cu/)、[Nexitally](https://nexitally.com/)、[白瓦网络](https://baiwa.art/)、[速蛙云](https://m.sw11.icu/) -### 账号相关 - -[迅雷账号](http://amm.xunleiyitian.com/q_365ceb19f5faf) - ## 学习收藏 - [JavaScript 新增两个原始数据类型](https://mp.weixin.qq.com/s/pmkvw4p86Ch77-9cyI5-1A) @@ -43,19 +39,7 @@ - [从 url 输入到返回请求的过程](https://mp.weixin.qq.com/s/hjCNzsbOZ9Wq4piB_RCyfw) - [文字智能适配背景颜色](https://mp.weixin.qq.com/s/jFqrvvwuJUEQTLFGOHpomw) -## 前端八股文 - - **JavaScript 基础**,ES6语法、垃圾回收与内存泄漏等。 - -**网络通信**,重点有浏览器缓存、Http2.0、Https通信过程、TCP与UDP、DNS解析、CDN缓存等。 - -**HTML和CSS**,这块被问的内容比较少,重点从布局入手,比如单位、盒模型、定位、响应式布局等知识点。 - -**前端框架**,框架的底层原理是一定会问的,至少要深入掌握一个前端框架。目前业界内比较流行的框架是 React 和 Vue,React 的知识点有 React diff、生命周期、Fiber 架构、Hooks 等;Vue 的知识点有Vue diff、响应式原理、Vue3.0新特性等。 - -**打包工具**,主要围绕Webpack展开,比如loader和plugin原理、webpack构建流程、热更新原理、性能优化等。除此以外,打包界的新宠esbuild也可以了解下。 -**加分项**,除了JavaScript外,还了解哪些编程语言 diff --git "a/docs/\351\235\242\350\257\225\351\242\230/2023\351\235\242\350\257\225\351\242\230\346\225\264\347\220\206.md" "b/docs/\351\235\242\350\257\225\351\242\230/\345\276\205\345\275\222\346\241\243\351\235\242\350\257\225\351\242\230.md" similarity index 92% rename from "docs/\351\235\242\350\257\225\351\242\230/2023\351\235\242\350\257\225\351\242\230\346\225\264\347\220\206.md" rename to "docs/\351\235\242\350\257\225\351\242\230/\345\276\205\345\275\222\346\241\243\351\235\242\350\257\225\351\242\230.md" index c887b19..352f542 100644 --- "a/docs/\351\235\242\350\257\225\351\242\230/2023\351\235\242\350\257\225\351\242\230\346\225\264\347\220\206.md" +++ "b/docs/\351\235\242\350\257\225\351\242\230/\345\276\205\345\275\222\346\241\243\351\235\242\350\257\225\351\242\230.md" @@ -1,4 +1,16 @@ -# 2023面试题整理 +# 待归档面试题 + + **JavaScript 基础**,ES6语法、垃圾回收与内存泄漏等。 + +**网络通信**,重点有浏览器缓存、Http2.0、Https通信过程、TCP与UDP、DNS解析、CDN缓存等。 + +**HTML和CSS**,这块被问的内容比较少,重点从布局入手,比如单位、盒模型、定位、响应式布局等知识点。 + +**前端框架**,框架的底层原理是一定会问的,至少要深入掌握一个前端框架。目前业界内比较流行的框架是 React 和 Vue,React 的知识点有 React diff、生命周期、Fiber 架构、Hooks 等;Vue 的知识点有Vue diff、响应式原理、Vue3.0新特性等。 + +**打包工具**,主要围绕Webpack展开,比如loader和plugin原理、webpack构建流程、热更新原理、性能优化等。除此以外,打包界的新宠esbuild也可以了解下。 + +**加分项**,除了JavaScript外,还了解哪些编程语言 ## CSS换行