UNPKG

@tmjssz/jsonresume-theme-even

Version:

A flat JSON Resume theme, compatible with the latest resume schema

9 lines (6 loc) 214 B
#!/usr/bin/env node import fs from 'node:fs' import { render } from '../dist/index.js' const resume = JSON.parse(fs.readFileSync(process.stdin.fd, 'utf-8')) const html = render(resume) process.stdout.write(html)