A simple ranking engine built with SvelteKit and Tailwind CSS.
- Create a list of items
- Compare items to rank them
- Insert new items at a specific position
- Delete items
I love prioritizing items in a list. I wanted to create a simple ranking engine that I could use in my projects. Inspired by Pubmeeple's ranking engine. With extra features:
- Insert new items after sorting
Optimized to reduce comparisons done by the user through:
- using merge sort to sort the items
- building a DAG (directed acyclic graph) of comparisons
- Clone the repository
- Run
pnpm install
- Run
pnpm run dev
- Open http://localhost:3000 in your browser