Socket
Socket
Sign inDemoInstall

gulp-resume

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-resume

gulp plugin to generate resumes from jsonresume.org


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

FAQs

Package last updated on 07 May 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc