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-react

v1.0.4

Published

A React-based theme for JSON Resume

Downloads

48

Readme

JSON Resume Theme React

A modern, responsive React-based theme for JSON Resume, built with React, TypeScript, and Vite.

Features

  • 🚀 Modern Stack: Built with React 18, TypeScript, and Vite
  • 🌐 Multilingual Support: Built-in internationalization with i18next
  • 🎨 Modern UI: Clean, professional design with Tailwind CSS
  • 📱 Responsive Design: Optimized for all devices
  • 📝 Markdown Support: Rich text formatting in descriptions
  • 🖨️ Print-Friendly: Optimized for PDF generation
  • 🔍 Type Safety: Full TypeScript support with generated types

Development

Prerequisites

  • Node.js 20+
  • npm 9+

Getting Started

  1. Clone the repository:

    git clone https://github.com/phoinixi/jsonresume-theme-react.git
    cd jsonresume-theme-react
  2. Install dependencies:

    npm install
  3. Start the development server:

    npm run dev
  4. Create your resume:

    • Place your resume.json file in the project root
    • For multiple languages, create files like resume-fr.json, resume-de.json, etc.
  5. Build and render your resume:

    npm run render:resumed

    This will:

    • Build the theme
    • Render your resume
    • Output to public/index.html

Multilingual Support

The theme supports multiple languages using the language property within your resume.json file. The theme uses i18next for internationalization, and translations are located in the src/i18n directory.

How it Works

  1. Set the Language in resume.json: Inside your resume.json file, specify the desired language code (e.g., en, fr, de) at the root level:

    {
      "language": "fr", // Set this to the desired language
      "basics": {
        // ... your basic info
      }
      // ... rest of your resume data
    }
  2. Rendering: When you run the render script (npm run render:local or using resumed), the theme will read the root language property and load the corresponding translations.

    The rendered output file (public/index.html by default) will be in the language specified in the JSON.

  3. Development Server: The development server (npm run dev) will also respect the root language set in the resume.json file used for preview.

Note: While you can maintain separate files like resume-en.json, resume-fr.json for organizational purposes, the theme itself only cares about the root language property within the specific JSON file being rendered or previewed.

Available Scripts

  • npm run dev: Start development server
  • npm run build: Build the theme for production
  • npm run render:resumed: Build and render your resume
  • npm run generate-types: Generate TypeScript types from JSON schema
  • npm run test: Run test suite
  • npm run lint: Run ESLint
  • npm run format: Format code with Prettier

Project Structure

├── src/
│   ├── components/     # React components
│   ├── i18n/          # Internationalization
│   ├── styles/        # CSS and Tailwind config
│   ├── types/         # TypeScript types
│   └── utils/         # Utility functions
├── scripts/           # Build and render scripts
├── public/            # Static assets
└── resume.json        # Sample resume

License

MIT