gulp-resume
v0.4.6
Published
gulp plugin to generate resumes from jsonresume.org
Downloads
24
Maintainers
Readme
gulp-resume
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, onlyhtml
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 ashttp://1.2.3.4:8080
License
MIT