The goal of jsonResumeEditR is to create and maintain a JSON
resume using R
Shiny. The app lives within an R package,
thus the package must be installed and the app run from the package
function run_jsonResumeEditR()
(see below).
The app should be able to:
- Allow user to edit fields within the JSON schema using inputs
- Export to JSON
- Import a JSON resume
- Clear fields
- TODO: Preview using a template builder
- TODO: Send JSON to a user Github gist for https://jsonresume.org/ hosting
This project uses R and R Shiny. You will need first need R installed, so install if you do not yet have it.
You can install the development version of jsonResumeEditR from GitHub (and dependencies from CRAN)
# install.packages("devtools")
# install jsonResumeEditR with dependencies in DESCRIPTION file
devtools::install_github("Shaunson26/jsonResumeEditR", dependencies = TRUE)
The app lives
library(jsonResumeEditR)
run_jsonResumeEditR()