Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
jsonresume-theme-eloquent
Advanced tools
An eloquent JSON Resume theme: fluent, persuasive, for developers.
An eloquent JSON Resume theme: fluent, persuasive, for developers. Have a look at it: Demo.
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');
});
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
mv 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
[2.0.0] - 2015-10-27
minify
instead of justDoIt
.FAQs
An eloquent JSON Resume theme: fluent, persuasive, for developers
The npm package jsonresume-theme-eloquent receives a total of 97 weekly downloads. As such, jsonresume-theme-eloquent popularity was classified as not popular.
We found that jsonresume-theme-eloquent demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.