financier-core
v0.0.1
Published
Financier's core calculation engine components
Downloads
2
Readme
financier-core
This is Financier's core calculation engine. It's broken into multiple parts, and currently the components are integrated at a higher level.
Consume
# In your project:
npm i --save financier-core
your_project_file.js
:
import { account } from 'financier-core';
import uuid from 'uuid';
const myBudgetUidPrefix = uuid();
const Account = account(myBudgetUidPrefix);
const checking = new Account({
name: 'Checking Account'
});
console.log(checking)
Develop
npm install
npm run test-watch
Test
npm test
# or continuous: `npm run test-watch`
Documentation
TODO: Insert current documentation URL here (generated and exported w/ GitLab).
npm run docs # static html assets in /docs
http-server -o -p 8080 docs # npm i -g http-server