gulp-resume

gulp plugin to generate resumes from jsonresume.org

Usage no npm install needed!

<script type="module">
  import gulpResume from 'https://cdn.skypack.dev/gulp-resume';
</script>

README

gulp-resume

NPM version Build Status Dependency Status

gulp-resume is a gulp plugin to generate a resume using jsonresume.org.

Usage

var resume = require('gulp-resume');
var rename = require('gulp-rename');

gulp.task('resume', function() {
  return gulp.src('resume.json')
    .pipe(resume({
      format: 'html',
      theme: 'elegant'
    }))
    .pipe(rename('resume.html'))
    .pipe(gulp.dest('.'));
});

Notes

Thank you to the awesome folks behind https://jsonresume.org, a JSON-based open source standard for resumes.

A couple notes on the options that can be passed:

  • format is the desired output format of the resume. At this time, only html is supported.
  • theme is the jsonresume.org theme to apply to the resume. Themes can be previewed at https://jsonresume.org/themes/.
  • proxy is an optional proxy server url such as http://1.2.3.4:8080

License

MIT