Go to file
Rafael Bardini cde237f706 feat(color): simplify color scheme 2023-09-03 21:36:34 +02:00
.github/workflows feat(deps): migrate to Vite and Vitest 2023-01-31 02:41:43 +01:00
.husky feat(deps): migrate to Vite and Vitest 2023-01-31 02:41:43 +01:00
bin feat(deps): migrate to Vite and Vitest 2023-01-31 02:41:43 +01:00
components feat(projects): display project type and keywords (#18) 2023-09-01 03:05:33 +02:00
test feat(projects): display project type and keywords (#18) 2023-09-01 03:05:33 +02:00
utils feat(deps): remove Handlebars dependency 2023-01-30 02:48:52 +01:00
.eslintrc.json feat(deps): migrate to Vite and Vitest 2023-01-31 02:41:43 +01:00
.gitignore feat(deps): migrate to Vite and Vitest 2023-01-31 02:41:43 +01:00
.lintstagedrc.json Fix lint-staged glob pattern 2020-07-08 19:38:09 +02:00
.nvmrc build(node): use latest Node.js LTS version 2021-03-05 10:34:26 +01:00
.prettierrc.json chore(deps): update dependencies 2023-07-22 02:35:49 +02:00
LICENSE 0.1.0 2018-10-06 14:50:02 +02:00
README.md docs(readme): fix build status badge 2023-01-30 02:53:52 +01:00
index.js feat(deps): migrate to Vite and Vitest 2023-01-31 02:41:43 +01:00
netlify.toml Fix Netlify build command 2020-07-05 18:27:17 +02:00
package-lock.json 0.20.0 2023-09-01 03:08:16 +02:00
package.json 0.20.0 2023-09-01 03:08:16 +02:00
resume.js feat(deps): remove Handlebars dependency 2023-01-30 02:48:52 +01:00
style.css feat(color): simplify color scheme 2023-09-03 21:36:34 +02:00
vite.config.js feat(deps): migrate to Vite and Vitest 2023-01-31 02:41:43 +01:00

README.md

jsonresume-theme-even

npm package version Build status Deploy status Code coverage Dependencies status

A flat JSON Resume theme, compatible with the latest resume schema. Inspired by jsonresume-theme-flat.

  • 💄 Markdown support
  • 📐 CSS grid layout
  • 🌗 Light and dark modes
  • 🧩 Standalone CLI
  • 📦 ESM and CommonJS builds

View demo →

Installation

npm install jsonresume-theme-even

Usage

With resume-cli

resume-cli comes with Even and uses it by default, so you don't even (pun intended) need to install the theme yourself:

npm install resume-cli
npx resume export resume.html

With Resumed

Resumed requires you to install the theme, since it does not come with any by default. It will then automatically load and use Even when rendering a resume:

npm install resumed jsonresume-theme-even
npx resumed render

Standalone usage

Even comes with a barebones CLI that reads resumes from stdin and outputs HTML to stdout. This allows usage without any resume builder tools:

npx jsonresume-theme-even < resume.json > resume.html