UNPKG

@warleon/jsonresume-theme-html

Version:

A JSON Resume theme, compatible with the latest resume schema

9 lines (6 loc) 222 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)