npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@trifoia/bmi-percentile-calculator

v1.3.4

Published

BMI Percentile Calculator

Downloads

8

Readme

BMI Percentile Calculator

This project defines a Javascript module BmiPercentileCalculator in UMD format.

BmiPercentileCalculator contains functions to calculate the english or metric body-mass index. These functions require a height, weight, and age in months.

BmiPercentileCalculator also contains a convenience function to compute a number of months between two dates. This is needed for the age input for the above functions.

The original source inspiration for the BMI calculation functions english() and metric() is:

  • https://www.cdc.gov/healthyweight/bmi/bmi_calc.js

Building

This project uses webpack to create a UMD Javascript file suitable for use via a <script> tag or as a module suitable for inclusion via import or require.

npm install
npm run build

Testing via the Browser

This project includes a simple example index.html which includes the built module via a <script> tag and performs some basic tests.

To run:

npm run serve
# Connect to http://127.0.0.1:8080

Mocha Tests

This project provides Mocha tests which will exercise the library in a NodeJS context using require to include the module.

npm run test

API

BmiPercentileCalculator.convertDateToAgem

Calculates the number of months ago the given date was compared to now

convertDateToAgem(date: string, current: Date): number

  • date: The date in YYYY-MM-DD format
  • current: Date object to use as the current date (default Date.now())

BmiPercentileCalculator.metric

Takes various data points and generates information about that bmi and bmi percentile

BmiPercentileCalculator.metric(
	kgs: number,
	meters: number,
	sex: string,
	agem: number,
	optionalBMIData: object) : object`
  • kgs: Weight in Kilograms
  • meters: Height in meters
  • sex: Biological sex. "f" for female and "m" for male
  • agem: Age in months
  • optionalBMIData: (optional) BMI data taken from the CDC calculator website

Returns: Object with the following fields:

  • bmi: The calculated bmi
  • percentile: The calculated bmi percentile
  • overP95: The percentage over the 95th percentile. Present only if over the 97th percentile
  • M: The median bmi for this person's age and sex categories,
  • Z: The number of standard of deviations from the mean

BmiPercentileCalculator.english

Takes various data points and generates information about that bmi and bmi percentile using imperial (english) units

BmiPercentileCalculator.metric(
	lbs: number,
	inches: number,
	sex: string,
	agem: number,
	optionalBMIData: object) : object`
  • lbs: Weight in pounds
  • inches: Height in inches
  • sex: Biological sex. "f" for female and "m" for male
  • agem: Age in months
  • optionalBMIData: (optional) BMI data taken from the CDC calculator website

Returns: See metric() above.

Version History

0.0.1 - Initial migration to a separate repo.