Nextjs博客系统 2022-02-12 Nextjs全解 11468 words 23 mins read 1 数据库设计与搭建 1.1 需求分析 主要的表有users、posts、comments users(id/username/passwordDigest) posts(id/userId/title/content) comments(id/userId/postId/content) 1.2 创建表 创建并启动容器,清除之前的开发环境,创建数据库 1 Read more...
Webpack全解 2022-02-06 Webpack 94 words 1 min read 1 AST、Babel和依赖 1.1 Babel原理 babel过程 parse:把代码变成AST traverse:遍历AST进行修改 generate:把 Read more...
CookieFree与CDN 2022-01-23 Web性能优化 774 words 2 mins read 1 资源合并 在浏览器中,针对图标的解决方案按流行时间来排序:CSS Sprites、IconFont、SVG Symbols 1.1 CSS雪碧图 雪碧图的英文是CSS Read more...
HTTP/2多路复用 2022-01-23 Web性能优化 731 words 2 mins read 1 HTTP/2的帧 HTTP/1.1的请求响应过程是基于字符串的,而HTTP/2的请求响应过程是基于帧的。 HTTP/2引入了帧(Frame Read more...
Nextjs配置TypeORM 2022-01-11 Nextjs全解 3022 words 7 mins read 1 创建Next.js项目 1 yarn create next-app --typescript 按照提示填写项目名称后, 项目就搭建完成了,以下是项目文件结构 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 . ├── README.md Read more...