Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ancene/troodon
🦖 Troodon is a Library for Deno to Handle Algorithms
https://github.com/ancene/troodon
algorithm algorithms deno deno-indonesia deno-lib denoland-id handle-algorithms saw simple-additive-weighting topsis typescript
Last synced: 5 days ago
JSON representation
🦖 Troodon is a Library for Deno to Handle Algorithms
- Host: GitHub
- URL: https://github.com/ancene/troodon
- Owner: ancene
- License: mit
- Created: 2020-06-05T16:47:05.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-30T16:45:41.000Z (over 4 years ago)
- Last Synced: 2024-10-28T12:15:33.992Z (20 days ago)
- Topics: algorithm, algorithms, deno, deno-indonesia, deno-lib, denoland-id, handle-algorithms, saw, simple-additive-weighting, topsis, typescript
- Language: TypeScript
- Homepage:
- Size: 527 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Troodon](https://raw.githubusercontent.com/shandysiswandi/troodon/master/_.png)](#)
[![tag](https://img.shields.io/github/v/tag/shandysiswandi/troodon.svg?sort=semver)](https://github.com/shandysiswandi/troodon)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/shandysiswandi/troodon/blob/master/LICENSE)
[![tag](https://img.shields.io/badge/deno->=1.0.0-green.svg)](https://github.com/denoland/deno)
[![Total alerts](https://img.shields.io/lgtm/alerts/g/shandysiswandi/troodon.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/shandysiswandi/troodon/alerts/)
[![Language grade: JavaScript](https://img.shields.io/lgtm/grade/javascript/g/shandysiswandi/troodon.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/shandysiswandi/troodon/context:javascript)## About Dinosaurs
🦖 Troodon is a Library for Deno to Handle Algorithms
## Project Structure
Troodon # Project Name
├── algorithms # List of Algorithm
| └── ...
├── examples # List of Example Algorithm Usage
│ └── ...
├── tests # List of Algorithm Test
│ └── ...
├── _.png # mascot : Powered by toppng.com and vectorstock.com
├── .gitignore
├── enums.ts # list of enum type
├── interfaces.ts # list of interface type
├── LICENSE
├── mod.ts # just import this file to use this library
├── README.md
└── utils.ts # list of function helper## Features
- [x] [Technique for Order of Preference by Similarity to Ideal Solution / Topsis](https://en.wikipedia.org/wiki/TOPSIS) algorithm.
- [x] [Simple Additive Weighting / SAW](https://bit.ly/Simple_additive_weighting) algorithm.
- [x] [Prime Number / Prime](https://en.wikipedia.org/wiki/Prime_number) algorithm.
- [x] [Leap Year](https://id.wikipedia.org/wiki/Leap_Year) algorithm.
- [x] [Weighted Product Model / WPM](https://en.wikipedia.org/wiki/Weighted_product_model) algorithm.
- [ ] [Analytic Hierarchy Process / AHP](https://en.wikipedia.org/wiki/Analytic_hierarchy_process) algorithm.## Usage
All the following algorithms modules are exposed in `mod.ts`
## Examples
- [Topsis Example](/examples/topsis.md)
- [SAW Example](/examples/saw.md)
- [Prime Example](/examples/prime.md)
- [Leap Year Example](/examples/leapyear.md)
- [WPM Example](/examples/wpm.md)## Run Test
deno test
## License
The Troodon project is open-sourced software licensed under the [MIT license](LICENSE).