financier-core

0.0.1 • Public • Published

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.

build status

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

Readme

Keywords

none

Package Sidebar

Install

npm i financier-core

Weekly Downloads

0

Version

0.0.1

License

MIT

Unpacked Size

223 kB

Total Files

40

Last publish

Collaborators

  • aeharding