SHOW, DON'T TELL
Repository viewer for private, public, and unlisted repos with curated code tours
Perfect for...
1const rules = {
2 3: "Fizz",
3 5: "Buzz"
4}
5
6function fizzBuzz(n: number): string {
7 let result = ""
8
9 for (const [key, value] of Object.entries(rules)) {
10 if (n % parseInt(key) === 0) {
11 result += value
12 }
13 }
1Using a dictionary, this fizzbuzz solution is more scalable than the traditional switch case approach.
New rules only require one new line!
14
15 return result || n.toString()
16}HOW IT WORKS
By default, repotour.io functions as a repository viewer. You can upload your private or public GitHub repositories and share them through a private, unlisted link with potential employers, or anyone else.
Add comments to specific lines of code and organize them into a guided tour. Give your viewers a focused, curated walkthrough of your codebase's most important features.
Upload private repositories to showcase take-home assignments to companies via an unlisted link, without making them public on your account. Add curated project links directly to your CV while maintaining complete discretion over your work.