README
Deriving Fixed Expenses before Education
Usage
This library has been written in TypeScript. You will need node and npm installed
to install dependencies and run the test suite.
Tests
The tests can be run via the npm script test after installing the dependencies.
npm ci
npm run test
Library
I set this library up so that it could be published as an npm package with TypeScript typings and be installed elsewhere. The library must first be compiled before publishing:
npm run build
npm publish
Linting
I set up what I believe to be a possibly over-robust set of linter rules. The linter
can be run via the npm script lint:
npm run lint
Note on naming conventions
Internally I've used camel case for all variable and property names as this has been the standard used by my past few employers. We have valued consistency across our codebases and only used different formatting at ingress/egress points.
As such, I've provided the data in the requested format on CreditReport.report
but can of course refactor all the names to be camel cased if that is the preferred
standard.