Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://rain120.github.io/awesome-javascript-code-implementation/
非常好的Javascript源码实现
https://rain120.github.io/awesome-javascript-code-implementation/
algorithm implementation-of-algorithms implementation-of-data-structures implementations javascript javascript-code-implementation typescript typescript-code-implementation
Last synced: about 1 month ago
JSON representation
非常好的Javascript源码实现
- Host: GitHub
- URL: https://rain120.github.io/awesome-javascript-code-implementation/
- Owner: Rain120
- License: mit
- Created: 2019-11-09T13:38:52.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-07T05:56:41.000Z (over 1 year ago)
- Last Synced: 2024-05-20T09:03:11.401Z (7 months ago)
- Topics: algorithm, implementation-of-algorithms, implementation-of-data-structures, implementations, javascript, javascript-code-implementation, typescript, typescript-code-implementation
- Language: TypeScript
- Homepage: https://rain120.github.io/awesome-javascript-code-implementation/
- Size: 19.9 MB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Awesome Javascript Code Implementation[![Netlify Status](https://api.netlify.com/api/v1/badges/aa1cb15a-9a66-42df-ab3b-6cf8a607c9c4/deploy-status)](https://app.netlify.com/sites/awesome-javascript-code-implementation/deploys) [![Coverage Status](https://coveralls.io/repos/github/Rain120/awesome-javascript-code-implementation/badge.svg?branch=master)](https://coveralls.io/github/Rain120/awesome-javascript-code-implementation?branch=master) [![Build Status](https://travis-ci.org/Rain120/awesome-javascript-code-implementation.svg?branch=master)](https://travis-ci.org/Rain120/awesome-javascript-code-implementation)
[![GitHub watchers](https://img.shields.io/github/watchers/rain120/awesome-javascript-code-implementation?style=social)](https://github.com/Rain120/awesome-javascript-code-implementation/watchers)
[![STAR](https://img.shields.io/github/stars/rain120/awesome-javascript-code-implementation?style=social)](https://github.com/Rain120/awesome-javascript-code-implementation/stargazers) [![FORK](https://img.shields.io/github/forks/rain120/awesome-javascript-code-implementation?style=social)](https://github.com/Rain120/awesome-javascript-code-implementation/network/members)[![ISSUES](https://img.shields.io/github/issues/rain120/awesome-javascript-code-implementation?style=flat-square)](https://github.com/Rain120/awesome-javascript-code-implementation/issues) [![GitHub closed pull requests](https://img.shields.io/github/issues-pr-closed/rain120/awesome-javascript-code-implementation?style=flat-square)](https://github.com/Rain120/awesome-javascript-code-implementation/pulls) [![COMMIT](https://img.shields.io/github/last-commit/rain120/awesome-javascript-code-implementation?style=flat-square)](https://github.com/Rain120/awesome-javascript-code-implementation/commits/master)
![LANGUAGES](https://img.shields.io/github/languages/top/rain120/awesome-javascript-code-implementation?style=flat-square)
[![VERSION](https://img.shields.io/github/package-json/v/rain120/awesome-javascript-code-implementation?style=flat-square)](https://github.com/Rain120/awesome-javascript-code-implementation/blob/master/package.json) [![LICENSE](https://img.shields.io/github/license/rain120/awesome-javascript-code-implementation?style=flat-square)](https://github.com/Rain120/awesome-javascript-code-implementation/blob/master/LICENSE)## 😚 Welcome
Welcome to the Awesome Javascript Code Implementation.
[中文版本](zh-CN.md)
Document Link:
- [github.io](https://rain120.github.io/awesome-javascript-code-implementation/)
- [netlify](https://awesome-javascript-code-implementation.netlify.com/)
#### 🎮 TL;DR
⌨️ To be Continue...
#### ✍ Why am I doing this?
- Learn **Typescript**, **Jest** etc.
- Learning something about the **javascript code implementation**.#### 💻 Plans
[Xmind Download](plans.xmind)
#### 🔨 Quick Start
生成 `code` 模板
```sh
npm run template
```生成 `docs` 模板
```sh
npm run docs
```同时生成 `code` `docs`模板
```
npm run template-docs
```[how-to-write-docs](docs/zh/how-to-write-docs/README.md)
#### 🌏Deploy
##### -> https://rain120.github.io/awesome-javascript-code-implementation
```
npm run deploy
```##### -> https://awesome-javascript-code-implementation.netlify.com/
`netlify auto deploy`
#### 🤝 Contributing
![PR](https://img.shields.io/badge/PRs-Welcome-orange?style=flat-square&logo=appveyor)
We welcome all contributions. You can submit any ideas as [pull requests](https://github.com/Rain120/awesome-javascript-code-implementation/pulls) or as a GitHub [issue](https://github.com/Rain120/awesome-javascript-code-implementation/issues).
#### 🔗 Links
Note: Just for Summary, More detail please go to [docs](https://rain120.github.io/awesome-javascript-code-implementation/)
- [ ] Primitive
- [ ] Javascript Keys
- [x] [instanceof](src/primitive/instanceof/README.md)
- [x] [apply](src/primitive/apply/README.md)
- [x] [bind](src/primitive/bind/README.md)
- [x] [call](src/primitive/call/README.md)
- [x] [new](src/primitive/new/README.md)
- [ ] Array
- [x] [arrayMove](src/Array/arrayMove/README.md)
- [x] [find](src/Array/find/README.md)
- [x] [isArray](src/Array/isArray/README.md)
- [ ] Object
- [x] [is](src/Object/README.md)
- [ ] ES6
- [x] Promise
- [ ] Proxy
- [ ] async / await
- [ ] extends
- [ ] 方法
- [x] [debounce](src/function/debounce/README.md)
- [x] [throttle](src/function/throttle/README.md)
- [ ] curry
- [x] arrayMove
- [ ] Algorithm
- [x] Sort
- [x] [bubbleSort](src/Algorithm/sort/bubbleSort/README.md)
- [x] [countingSort](src/Algorithm/sort/countingSort/README.md)
- [x] [heapSort](src/Algorithm/sort/heapSort/README.md)
- [x] [insertionSort](src/Algorithm/sort/insertionSort/README.md)
- [x] [mergeSort](src/Algorithm/sort/mergeSort/README.md)
- [x] [quickSort](src/Algorithm/sort/quickSort/README.md)
- [x] [shellSort](src/Algorithm/sort/shellSort/README.md)
- [x] [selectionSort](src/Algorithm/sort/selectionSort/README.md)
- [x] [radixSort](src/Algorithm/sort/radixSort/README.md)
- [x] [bucketSort](src/Algorithm/sort/bucketSort/README.md)
- [ ] DP
- [ ] Tree
- [x] [binaryTree](src/Algorithm/binaryTree/README.md)
- [ ] Graph
- [ ] Math
- [x] [binary](src/Algorithm/binary/README.md)
- [ ] 实用工具库
- [ ] Lodash
- [ ] Internal
- [x] BaseFindIndex
- [ ] 函数式编程库
- [ ] Ramda
#### 📰 References
- Algorithms
[Visualising Data Structures and Algorithms Through Animation](https://visualgo.net/)
[Data Structure Visualizations](https://www.cs.usfca.edu/~galles/visualization/Algorithms.html)
[javascript-algorithms](https://github.com/trekhleb/javascript-algorithms)
- Sort
[JS-Sorting-Algorithm](https://github.com/Rain120/JS-Sorting-Algorithm)
[JS ArraySort Performance Analysis](https://dailc.github.io/jsfoundation-perfanalysis/html/performanceAnalysis/demo_performanceAnalysis_jsarraySort.html)
- MDN
[ECMA 262](https://tc39.es/ecma262/)
#### 👨🏭 Author
> Front-End development engineer, technology stack: React + Typescript + Mobx, also used Vue + Vuex for a while
- [Github](https://github.com/Rain120)
- [知乎](https://www.zhihu.com/people/yan-yang-nian-hua-120/activities)
- [掘金](https://juejin.im/user/57c616496be3ff00584f54db)#### 📝 License
[MIT](https://github.com/Rain120/awesome-javascript-code-implementation/blob/master/LICENSE)
Copyright © 2019-present [Rain120](https://github.com/Rain120).
#### ☕ Coffee or Tea
![wechat-zhifubao-pay.png](./wechat-zhifubao-pay.png)