Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrpluto0/js-magic
https://github.com/mrpluto0/js-magic
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mrpluto0/js-magic
- Owner: MrPluto0
- Created: 2022-03-10T08:02:00.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-06-03T12:31:59.000Z (7 months ago)
- Last Synced: 2024-06-03T14:34:09.393Z (7 months ago)
- Language: JavaScript
- Size: 73.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JS Magic
## 手写系列
**针对一些常用模块的简单实现**
- [x] Animate
- [x] Async By `Generator`
- [x] Decorator
- [x] cache
- [x] debounce + throttle
- [x] deepclone
- [x] emitter
- [x] promisify
- [ ] Generator
- [x] Just for a sample
- [x] Inherited
- [x] 原型链继承
- [x] 构造函数继承
- [x] 组合继承
- [x] 原型式继承
- [x] 寄生式继承
- [x] 组合寄生式
- [ ] MVVM like `Vue`
- [x] Mvvm1 By `Html+JS`
- [ ] Mvvm2 By `Html+TS+Webpack`
- [x] Promise## 设计模式
**仅针对每种模式完成一个`sample`**
- [x] \*策略模式
- [x] 代理模式
- [x] 单例模式
- [x] \*发布-订阅模式
- [x] 观察者模式
- [x] 命令模式
- [x] 模板方法模式
- [x] 适配器模式
- [x] 享元模式
- [x] \*责任链模式
- [x] 中介者模式
- [x] 装饰器模式
- [x] 状态模式
- [x] \*组合模式