
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
#Functional Threashold Power Calculator
This node module allows you to supply your average watts during a 20-minute FTP test (and optionally, average heart rate), and produce results for your Threshold Zones.
npm install --save ftp-calc
Then, in your (ES2015+) source code:
import { calcZones } from 'ftp-calc';
const watts = 195;
const hr = 170;
const zones = calcZones(watts, hr);
Provided watts
and hr
resolve to a number, you'll get an object, zones
, which has 6 Objects named "Zone1
" through to "Zone6
".
Each zone has a name
prop, a short
prop for the abbreviation, desc
and benefits
props for optional display, and then, the good stuff:
avgPower
has a low
and high
value.avgHr
will also have a low
and high
value, if you supplied hr
to calcZones()
.Sample:
{
Zone1: {
name: 'Zone 1: Active Recovery',
short: 'AR',
desc: 'Increase blood flow to muscles to flush out waste products and provide nutrients',
benefits: 'Promotes recovery and therefore training response',
avgPower: { low: 0, high: 107 },
avgHr: { low: 115, high: undefined }
},
Zone2: {
name: 'Zone 2: Endurance',
short: 'EN',
desc: 'Improves fat metabolism and ability to use oxygen, produce power and increases efficiency. Increases economy',
benefits: 'More efficient use of energy. Able to produce more power with the same level of effort, works on technique/skill',
avgPower: { low: 109, high: 146 },
avgHr: { low: 117, high: 141 }
},
}
(truncated).
Often, you'll need to quickly calculate percentage of your average FTP for training purposes. Simply perform the following:
import { calcPercentages } from 'ftp-calc';
const watts = 195;
const percentString = '50,60,70,80,90,125,150';
const percentages = calcPercentages(watts, percentString);
You will receive the following sample output:
{
'50%': 97,
'60%': 117,
'70%': 136,
'80%': 156,
'90%': 175,
'125%': 243,
'150%': 292,
}
The key is the percentage interpreted from the percentageString; the value is the wattage that represents that percentage of average FTP.
Calculations are based on values provided by WattBike. Briefly:
Training Zone | Average Power | Average HR |
---|---|---|
Zone 1 (Active Recovery) | < 55% | < 68% |
Zone 2 (Endurance) | 56 – 75% | 68 – 83% |
Zone 3 (Tempo) | 76 – 90% | 84 – 94% |
Zone 4 (Lactate Threshold) | 91 – 105% | 95 – 105% |
Zone 5 (VO2max) | 106 – 120% | > 106% |
Zone 6 (Anaerobic Capacity) | 121 – 150% | N/A (are you dead yet?) |
I'd highly recommend that you not only consult your physician before undergoing any intense training or excercise, but that you use the values in this node module at your own risk.
If these numbers aren't what you'd expect, fork the repo and make changes to the ZONE_CALC
object. Optionally, open a pull request :-).
Oh, please do! PRs actively monitored and encouraged.
Copyright 2017 James Robert Perih
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Given your average watts, calculates your Zones
The npm package ftp-calc receives a total of 0 weekly downloads. As such, ftp-calc popularity was classified as not popular.
We found that ftp-calc demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.