
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
This lightweight npm package can be used to calculate a simple linear scale between two given values (minimum and maximum) and the maximal amount of ticks.
This package is no longer actively developed, maintained or supported.
Please use the scalax package instead.
Using Node.js, install the package with the following shell command:
npm install linscale
Load the package into your project:
const LinScale = require( 'linscale' );
Sample of how to use the package in your code:
let scale = new LinScale( -1.341, 6.5, 6 );
if ( scale.calculate() ) {
let min = scale.getMinimum();
// expected: -2
let max = scale.getMaximum();
// expected: 7
let ticks = scale.getTicks();
// expected: [ -2, 0, 2, 4, 6, 8 ]
let pct = scale.pct( 1.5 );
// expected: 35
let crossesZero = scale.crossesZero();
// expected: true
}
Using JavaScript load this package by embed this file via jsDelivr:
import LinScale from 'https://cdn.jsdelivr.net/npm/linscale@1.0.3/+esm';
Remember: To use import you need to load your JavaScript file as type="module".
Here you can find all methods available in the LinScale class.
Creating a new instance of LinScale allows to pass the bounds and maximum number of ticks. This replaces methods setBounds and setMaxTicks. You still need to run calculate().
setBounds( min, max )Set lower / upper bounds for the scale. Requires to run calculate() afterwards.
setMaxTicks( ticks )Set maximum number of ticks within the scale. Requires to run calculate() afterwards.
centerAt ( [ value = 0 ] )Center scale at the given value (default is zero). Requires to run calculate() afterwards.
calculate()Calculates the scale range, minimum, maximum and step size.
isNegative()Checks if the entire scale is negative. Returns true if the scale is negative.
crossesZero()Checks if the scale crosses zero. Returns true if the scale crosses zero.
getStepSize()Returns the scale step size.
getRange()Returns the scale range (from min to max).
getMinimum()Returns the scale minium value.
getMaximum()Returns the scale maximum value.
getTicks()Returns an array of the scale ticks (ascending order).
getTicksReverse()Returns an array of the scale ticks (descending order).
pct( value [, from = 'min' ] )Returns the percentage of a value within the scale from the reference point (either minimum or maximum value).
isNegative methodcrossesZero methodcenterAt methodFAQs
lightweight npm package to create linear scales
We found that linscale demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.