GitXplorerGitXplorer
m

gulp-resume

public
24 stars
4 forks
2 issues

Commits

List of commits on branch master.
Verified
14fef0d135f44a278ba284c98b7a5bb56fd73af6

Bump ansi-regex from 3.0.0 to 3.0.1 (#17)

ddependabot[bot] committed 2 years ago
Verified
b7c287b2aa03f13d190746cb5f4ebcb71d3f8e1e

Bump json-schema and jsprim (#18)

ddependabot[bot] committed 2 years ago
Verified
74031a734d20a114e44c09cef11c0c0e1d884a7b

Bump minimatch and mocha (#19)

ddependabot[bot] committed 2 years ago
Verified
15bd693b014db1f0a3363ac31845d18aae33c340

Bump minimist from 1.2.5 to 1.2.8 (#16)

ddependabot[bot] committed 2 years ago
Verified
5915214ff4d5540a332e64e641586a24cd33b1db

Bump flat and mocha (#15)

ddependabot[bot] committed 2 years ago
Verified
c615d1231beb87191ec460f766dbb9ebef7eaf75

Bump qs from 6.5.2 to 6.5.3 (#14)

ddependabot[bot] committed 2 years ago

README

The README file for this repository.

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