npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

jsonresume-theme-github-styled

v1.3.3

Published

A GitHub-styled JSON Resume theme with dark/light mode support and mobile responsiveness

Readme

JSON Resume Theme - GitHub Style

npm version npm downloads license

A modern, clean JSON Resume theme based on GitHub's soft dark and light themes with seamless dark/light mode support and mobile-responsive layout using Tailwind CSS.

Live Demo

Features

  • GitHub Soft Themes: Authentic recreation of GitHub's soft dark and light color schemes with frosted glass effects
  • Dark/Light Mode: Automatic theme detection with manual toggle and localStorage persistence
  • Mobile Responsive: Fully optimized for mobile, tablet, and desktop views
  • Modern Technology: Built with Tailwind CSS for modern styling
  • Self-Contained: All styles and scripts embedded in the template
  • Web-First Design: Optimized for screen viewing with beautiful visual effects

Installation

Using with resume-cli

  1. Install the theme:
npm install jsonresume-theme-github-styled
  1. Create or use your existing resume.json file following the JSON Resume schema

  2. Generate your resume:

npx resume export resume.html --theme github-styled

Local Development

  1. Clone or download this repository
  2. Install dependencies:
npm install
  1. Install resume-cli globally if you haven't already:
npm install -g resume-cli
  1. Create a resume.json file with your information

  2. Serve your resume locally:

npx resume serve --theme .
  1. Open your browser to http://localhost:4000

JSON Resume Schema

Your resume.json should follow the JSON Resume schema. Here's a minimal example:

{
  "basics": {
    "name": "John Doe",
    "label": "Software Engineer",
    "image": "",
    "email": "[email protected]",
    "phone": "(555) 555-5555",
    "url": "https://johndoe.com",
    "summary": "A passionate software engineer...",
    "location": {
      "city": "San Francisco",
      "region": "CA",
      "countryCode": "US"
    },
    "profiles": [
      {
        "network": "GitHub",
        "username": "johndoe",
        "url": "https://github.com/johndoe"
      }
    ]
  },
  "work": [...],
  "education": [...],
  "skills": [...],
  "projects": [...]
}

Theme Features

Supported Resume Sections

  • ✅ Basics (name, contact, summary, profiles)
  • ✅ Work Experience
  • ✅ Education
  • ✅ Skills
  • ✅ Projects
  • ✅ Awards
  • ✅ Certificates
  • ✅ Publications
  • ✅ Volunteer Experience
  • ✅ Languages
  • ✅ Interests
  • ✅ References

Dark/Light Mode

The theme features GitHub's authentic soft dark and soft light color schemes with frosted glass tile effects. It automatically detects your system's color scheme preference and applies the appropriate theme. You can manually toggle between dark and light modes using the button in the top-right corner. Your preference is saved in localStorage and persists across sessions.

Mobile Optimization

The theme is fully responsive with breakpoints optimized for:

  • Mobile devices (< 768px)
  • Tablets (768px - 1024px)
  • Desktop (> 1024px)

Visual Effects

The theme features frosted glass tiles with backdrop blur and subtle shadows, creating a modern, layered visual effect that works beautifully in both dark and light modes. This is a web-first design optimized for screen viewing rather than printing.

Customization

Colors

The theme uses GitHub's color palette defined in the Tailwind config. You can customize colors by modifying the tailwind.config section in resume.hbs:

tailwind.config = {
  darkMode: 'class',
  theme: {
    extend: {
      colors: {
        github: {
          // Customize colors here
        }
      }
    }
  }
}

Layout

The template uses Handlebars for templating. You can modify resume.hbs to adjust the layout, add new sections, or change the styling.

Exporting

HTML Export

npx resume export resume.html --theme github-styled

PDF Export

npx resume export resume.pdf --theme github-styled

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Credits