Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jsonresume-theme-eloquent

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsonresume-theme-eloquent

An eloquent JSON Resume theme: fluent, persuasive, for developers.

  • 3.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
31
increased by47.62%
Maintainers
1
Weekly downloads
 
Created
Source

jsonresume-theme-eloquent

npm Build Status Dependency Status Code Climate

An eloquent JSON Resume theme: fluent, persuasive, for developers. See it live.

Theme screenshot

Online demo

Features

  • Mobile First theme based on Bootstrap.
  • Download your resume with a single click, in a single file.
  • Keep your resume offline if you want to: the theme is self-contained.
  • Obfuscates your email address and phone number from spam bots.
  • Great Font Awesome icons.
  • Gorgeous Open Sans web font.
  • Optimized for print and screen readers.
  • Contains Schema.org markup to make the most of your content.
  • Uses Open Graph & Twitter metas to improve social sharing.
  • All fields are optional, pick what you need!

Usage

Install the theme with npm install --save jsonresume-theme-eloquent, then:

'use strict';

var fs = require('fs');
var path = require('path');
var eloquent = require('jsonresume-theme-eloquent');

var resumeJSON = JSON.parse(fs.readFileSync(path.join(__dirname, '/resume.json'), 'utf-8'));
var resumeHTML = eloquent.render(resumeJSON);

fs.writeFile(path.join(__dirname, '/resume.html'), resumeHTML, function(err) {
    console.log(err || 'Resume exported to resume.html');
});

Contributing

Install the project with:

git clone git@github.com:ThibWeb/jsonresume-theme-eloquent.git
cd jsonresume-theme-eloquent
npm install
./.githooks/deploy
# To actively work on the theme.
npm run start

To run the tests locally:

# To create a reference resume export.
npm run test
cp test/resume.html test/old-resume.html
# To compare the result of your changes against the reference.
npm run test
diff -u test/old-resume.html test/resume.html

To release a new version:

npm version minor -m "Release %s"
git push origin master
git push --tags
npm publish

Built with

Keywords

FAQs

Package last updated on 27 Mar 2016

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