kasane (重ね) — Japanese: to layer, to overlap. Anime episode and manga chapter, side by side.
Find which anime episodes cover which manga chapters, and vice versa — one app, every platform.
Three use cases:
- Manga reader — check if an anime adaptation exists for a series, and how much of the manga it covers.
- Anime viewer — figure out which manga volume to buy to continue from where the anime left off.
- Both — follow a chapter↔episode guide while consuming both.
Browse and search the catalog:
Series detail — arc-level rail mapping anime episodes to manga chapters, with MangaDex volume covers below:
Anime-side view with the Quick lookup form ("I finished episode X → you're on chapter Y"):
Drill into a single arc to see per-episode ↔ per-chapter alignment:
| Platform | How it ships |
|---|---|
| iOS | Expo / EAS Build |
| Android | Expo / EAS Build |
| Web | expo export -p web (static) |
| macOS / Windows / Linux | Tauri 2 wraps the web build |
- Expo (React Native + RN Web) + TypeScript
- Expo Router for file-based universal routes
- TanStack Query + Zustand
- AniList GraphQL for anime/manga metadata
- Bundled JSON in
src/data/mappings/for episode↔chapter alignments - Tauri 2 for desktop binaries
bun install
bun run start
bun run web # browser
bun run ios # iOS simulator (Mac + Xcode required)
bun run android # Android emulator
bun run typecheckDesktop is shipped via Tauri 2 wrapping the Expo web export. One-time setup:
- Install Rust:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh - Initialize the desktop project (creates
src-tauri/):bun run build:web # produces dist/ bunx tauri init \ --app-name kasane \ --window-title "Kasane" \ --frontend-dist ../dist \ --before-build-command "bun run build:web" \ --dev-url ""
- Run / build:
bun run desktop:dev # dev window bun run desktop:build # native binary
- Find the AniList anime ID and manga ID for the series.
- Add a file at
src/data/mappings/<slug>.jsonfollowing the schema insrc/types/index.ts→SeriesMapping. - Import it in
src/data/index.ts.
The mapping schema:
{
"anilistAnimeId": 21,
"anilistMangaId": 30013,
"title": "One Piece",
"mappings": [
{ "episodes": [1, 3], "chapters": [1, 7], "arc": "Romance Dawn" }
]
}Episode and chapter ranges are inclusive.
app/ # Expo Router routes
_layout.tsx
index.tsx # search
series/[id].tsx # detail with rail + quick lookup
src/
api/anilist.ts # GraphQL client
components/ # SeriesCard, EpisodeChapterRail
data/ # bundled mappings + lookup helpers
types/ # shared TS types
docs/superpowers/specs/ # design docs
src-tauri/ # desktop wrapper (added after web bundle works)
MIT (TBD)



