1.0.4 • Published 8 years ago

healthstats v1.0.4

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

#Health Stats

image

Node module for calculating BMI, BMR and IBW:

How to:
  1. npm install healthstats
  2. include healthstats in your .js file
  3. Use inches for 'height' and pounds for 'weight'

var health = require('healthstats');

Public Methods:

Body Masss Index - BMI
health.female.BMI(weight, height);
health.male.BMI(weight, height);
Basal Metabolic Rate - BMR

The amount of calories you need to maintain body weight.

health.female.BMR(weight, height, age);
health.male.BMR(weight, height, age);
BMR by lifestyle:

In order to call the following methods, you must first set a BMR value, or else you must pass a BMR value manually.

//Sedentary 
health.female.noActivity(female.BMR);
health.male.noActivity(male.BMR);
//Light Activity 
health.female.lightActivity(female.BMR);
health.male.lightActivity(male.BMR);
//Moderate Activity 
health.female.moderateActivity(female.BMR);
health.male.moderateActivity(male.BMR);
//Very Active
health.female.veryActive(female.BMR);
health.male.verActive(male.BMR)
//Extremely Active
health.female.extremelyActive(female.BMR);
health.male.extremelyActive(male.BMR);
Ideal Body Weight - IBW
health.female.IBW(height);
health.male.IBW(height);
Author: Alex Bennett

Licesnse: MIT

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago