HackMyCore
The open core library for HackMyResume and FluentCV.
Core resume and career management (RACM) classes and routines used by HackMyResume and FluentCV among other tools. Free and open-source under the MIT License.
Install
Install the latest stable release with NPM:
npm install hackmycore --save
Install the latest dev
version with NPM using this syntax:
npm install hacksalot/hackmycore#dev --save
Or, clone from GitHub as usual (take a fork first):
git clone https://github.com/your-name/hackmycore.git
Use
All HackMyResume-related code that isn't
directly involved with the CLI lives here. Every important function and class is
exported via CommonJS / Node.js module.exports
with UMD support forthcoming.
For convenience, all classes and methods are exposed as properties on the module
object:
// Get the API facade (for convenience)// You can also require individual components// with require('hackmycore/path/to/thing')var HMR = ; // Create and open FRESHResumevar rezA = ;rezA; // Create and open a JRSResumevar rezB = ;rezB; // Create and invoke an instance of the HMR "build" verbvar build = ;buildl; // Use other classes and methods on the HMR facade as needed.
You can also import individual classes like so:
var FRESHResume = ;
License
MIT. See LICENSE.md for details.