0.4.6 • Published 3 years ago

gulp-resume v0.4.6

Weekly downloads
2
License
MIT
Repository
github
Last release
3 years ago

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

0.4.6

3 years ago

0.4.5

3 years ago

0.4.4

4 years ago

0.4.2

4 years ago

0.4.1

5 years ago

0.4.0

5 years ago

0.3.0

6 years ago

0.2.0

7 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago