gulp-resume

0.4.6 • Public • Published

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

/gulp-resume/

    Package Sidebar

    Install

    npm i gulp-resume

    Weekly Downloads

    12

    Version

    0.4.6

    License

    MIT

    Unpacked Size

    6.35 kB

    Total Files

    7

    Last publish

    Collaborators

    • mattberther