Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

estimate-js

AndreyProgr22MIT1.0.13TypeScript support: included

Set of tools for estimation.

estimation, PERT, 3 point estimation, 3-point, critical path, project management

readme

Release semantic-release

CodeFactor Maintainability Test Coverage

Commitizen friendly semver GitHub license Downloads

Estimation tools set. Currently supported entities:

  • 3-Point
  • PERT

Try it out

Want to get a quick demo before using it? Press the button below.

Edit Estimate JS playground

Installation

With NPM:

npm i estimate-js -S

or using YARN:

yarn add estimate-js

Usage

Import required entities to you code:

  import { ThreePointEstimate, PertEstimate } from 'estimate-js';

Perform operations you need:

  const threePointEstimate = new ThreePointEstimate(2, 3, 5);
  const PERTEstimate = new PertEstimate(threePointEstimate);

  const { estimate: E, standartDeviation: SD } = PERTEstimate;

  // 95% prob.
  console.log(E - (2 * SD), '-', E + (2 * SD));