Performance is essential to deliver high-quality software. With the recent evolutions of the web, Performance shows its importance even more. There were a lot of tries to make the web faster, like worker-threads or WASM but still, those are just tools rather than definitive answer.
Algorithms and Data-Structures are the keys to achieve more reliable and performant applications. "TS-Collection" is a library to help you learn, visualize, and use Algorithm and Data-Structure in your projects.
Algorithm and Data-Structures are always been fascinating to me. We never can deny the use cases and importance of these subjects. I truly believe in OSS and wanted to help people learn and use these algorithms. This library is not perfect since I'm not the best one to write it. I'm learning a lot in this journey too but I'm trying my best to offer these features with this library.
I can list so many OSS lovers. Here is a few. These guys are wonderful. Thank you <3
Kent C. Dodds, Tanner Linsley, Jared Palmer, Jake Archibald, Surma, Jason Miller, Joshua Comeau, Paul Henschel, Daishi Kato, Tim Neutkens, Dan Abramov, Michael Jackson, Ryan Florence,
You can install TS-Collection with NPM,
Yarn, or a good ol' <script>
via
unpkg.com.
npm install @ts-collection/core --save
or
yarn add @ts-collection/core
If you're not using a module bundler or package manager we also have a global ("UMD") build hosted on the unpkg.com CDN. Simply add the following <script>
tag to the bottom of your HTML file:
<script src="https://unpkg.com/@ts-collection/core@0.0.3/dist/umd/bundle.umd.js"></script>