SHOW, DON'T TELL

Show off your projects the way you want

Repository viewer for private, public, and unlisted repos with curated code tours

Perfect for...

  • >Job seekers sending take-home assignments
  • >Developers linking projects on their CV
  • >Students showing their assignments and coursework
my-project / src / fizzbuzz.tsmain
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  }
User Profile
1
Using 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

How does it work?

  1. a1b2c3d

    Repository Viewer

    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.

  2. e4f5a6b

    Curated Tours

    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.

  3. c7d8e9f

    Job Search

    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.

Pricing

Free

  • 3 repositories
  • 25 MB repository size limit
  • 5 tour comments per repository
  • Custom links in repositories
  • Visitor Analytics

Pro

MOST POPULAR

Monthly

$6.99
/month

Lifetime

LIFETIME
$29.99
one-time
  • 50 repositories
  • 250 MB repository size limit
  • tour comments per repository
  • Custom links in repositories
  • Priority support
  • Visitor Analytics (coming soon!)