A JSON Resume Theme inspired by the Stack Overflow Developer Story resume format.
npm install jsonresume-theme-stackoverflowed[![NPM Package Version][shield-npm-version]][npm]
[![GitHub Repository][shield-github]][repo]
[![Changelog][shield-changelog]][releases]
[![GitHub Workflow Status (main)][shield-ci-main]][status-ci-main]
[![Test Coverage][shield-coverage]][codacy-dashboard]
> _A [JSON Resume][json-resume] Theme inspired by the Stack Overflow Developer Story resume format._
Sadly the Stack Overflow team decided to [discontinue the Jobs and Developer Story][so-meta] platform
on March 31, 2022. Having had much career success particularly thanks to their product this came as
disappointing news - there is something about this resume format that seems to translate well with
recruiters, so with a little artistic license this project aims to create a faithful replica that
is compatible with the [Resume CLI][resume-cli] tool.
![Screenshot: Resume Sample][img-sample]
Start a new project and install the following dependencies.
``sh`
npm install resume-cli jsonresume-theme-stackoverflowed
Optionally generate some sample data if not starting with an existing resume.
`sh`
npx resume init
Add some workflow scripts to the package.json
`json`
{
"scripts": {
"validate": "resume validate --resume ./resume.json",
"serve": "resume serve --resume ./resume.json --theme stackoverflowed",
"export": "resume export --resume ./resume.json --theme stackoverflowed",
"pdf": "$npm_execpath run export -- --format pdf \"./$(date +'%Y-%m-%d').pdf\"",
"html": "$npm_execpath run export -- --format html \"./$(date +'%Y-%m-%d').html\""
}
}
Happy job hunting...
`sh
npm run