Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lmj01 committed May 22, 2024
1 parent ce204cb commit c1e8e74
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 11 deletions.
14 changes: 13 additions & 1 deletion web/http.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,16 @@ attachment会以附件方式下载

[A curated list of free courses & certifications](https://github.com/cloudcommunity/Free-Certifications)
[Create Your Secure Online Presence with Our Self-Certified HTTPS Certificate Generator ](https://github.com/selfcertificationhub/selfcertificationhub)
[自签名HTTPS证书生成器, 适用于产品发布前需要HTTPS验证的场景](https://selfcertificationhub.github.io/selfcertificationhub/generate)
[自签名HTTPS证书生成器, 适用于产品发布前需要HTTPS验证的场景](https://selfcertificationhub.github.io/selfcertificationhub/generate)

### [mkcert](https://github.com/FiloSottile/mkcert)

使用Go写的一个工具,A simple zero-config tool to make locally trusted development certificates with any names you'd like.

自编译后使用工具,是学习的一个Go的案例
```shell
mkcert-v1.4.4-windows-amd64.exe -install
mkcert-v1.4.4-windows-amd64.exe -CAROOT
mkcert-v1.4.4-windows-amd64.exe localhost 127.0.0.1 ::1 192.168.0.138 // 生成自签证书
```

28 changes: 21 additions & 7 deletions web/index.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# Web

- [nginx](/web/nginx/nginx.md)
- [使用过的库](/web/library.md)
- [正则表达式](/cpl/js/regularExpressions.js)
- [webassembly](/web/webAssembly.md)
- [http](/web/http.md)
- [html](/web/html.md)
- [css](/web/css.md)
- [canvas](/cg/canvas.md)
Expand All @@ -30,15 +28,31 @@

- [CanIUse网站查看接口的普及率](https://caniuse.com/)

## WebGL

### [threejs](https://threejs.org/)
## [MDN Web Api](https://developer.mozilla.org/en-US/docs/Web/API)

现代浏览器技术开发API有大量的接口,需要去了解

### [http](https://developer.mozilla.org/en-US/docs/Web/HTTP)

- [http](/web/http.md)
- [nginx](/web/nginx/nginx.md)

### [Service Worker API](https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API)

- [Mock Service Worker Industry standard API mocking for JavaScript](https://mswjs.io/)
- [broswer集成时需要设置worker](https://mswjs.io/docs/integrations/browser)
```shell

```

- [笔记](/cg/threejs/index.md)

### [BabylonJS](https://www.babylonjs.com/)
### [WebGL API](https://developer.mozilla.org/en-US/docs/Web/API/WebGL_API)

- [笔记](/cg/babylonjs/index.md)
- [threejs](https://threejs.org/)
- [笔记](/cg/threejs/index.md)
- [BabylonJS](https://www.babylonjs.com/)
- [笔记](/cg/babylonjs/index.md)


## library
Expand Down
3 changes: 0 additions & 3 deletions web/library.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,6 @@ node-gyp is a cross-platform command-line tool written in Node.js for compiling

## [Daikon](https://github.com/rii-mango/Daikon)

## [Mock Service Worker](https://mswjs.io/)
Industry standard API mocking for JavaScript.

# 其他库

- [excel](/articles/notes/excel.md)

0 comments on commit c1e8e74

Please sign in to comment.