@harvest-profit/harvest-profit-calculations

1.2.3 • Public • Published
Harvest Profit

Installation

You will need an NPM access token to access this repo.

Simply run the following to install:

yarn add @harvest-profit/harvest-profit-calculations

Usage

To use this package, just give it a try!

import { Contract } from '@harvest-profit/harvest-profit-calculations';

const contractUrl = Contract.translateContractTypeToUrl(Contract.hedgeToArriveType);
console.log(contractUrl); // Outputs: `hedge_to_arrive`

Additional Notes

This package is meant to standardize and document all the calculations used in the Harvest Profit App. The Calculations module is a good example of that. That module contains very simple functions like calculateAvgCashPrice which simply divides revenue by sold production, but each function documents on how to get that number which is important. If you are new to the project, that would be a good place to start reading some documentation.

As for standardizing, the Contract module is a good example of that. You should NEVER be checking what type the contract is, or setting the contract type without using the module defined types. Example:

// Example of BAD
if (contract.type_name === 'cashsale') {
   // ... do something
 }
// Example of GOOD
if (contract.type_name === Contract.cashSaleType) {
   // ... do something
 }

Or better yet...

// Example of GOOD
if (Contract.isCashSaleType(contract.type_name)) {
   // ... do something
 }

Development

Clone this repo, and begin committing changes. PRs are preferred over committing directly to master.

To run tests locally on your machine, run the following:

yarn run test

To preview documentation locally on your machine, run the following:

yarn run build-docs

After merging your pull request, consider updating the documentation with the following command:

yarn run publish-docs

Publishing

This package is published as a Private NPM Module.

To publish to the private NPM registry, simply run the following, after bumping the package.json version:

# Publish using Yarn
yarn publish

# Or publish using NPM
npm publish

License

Copyright 2017-Present Harvest Profit. This repo contains private code. No copying or external use permitted.

Readme

Keywords

none

Package Sidebar

Install

npm i @harvest-profit/harvest-profit-calculations

Weekly Downloads

145

Version

1.2.3

License

UNLICENSED

Unpacked Size

24.2 kB

Total Files

10

Last publish

Collaborators

  • csalazarhp
  • nickhorob
  • codster0073
  • jakehumphrey
  • jarydkrish