
Security News
/Research
Fake Corepack Site Distributes Infostealer and Proxyware to Developers
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.
fraction-math-js
Advanced tools
[](https://travis-ci.org/hjiayz/fraction-math-js)
bignumber fraction calculator and node module.
node4.1.1 arguments:
--harmony --harmony_array_includes
node7.6.0 no arguments.
npm install fraction-math-js -g
> fcalc
fcalc> (1+1)*2/12
(1+1)*2/12 = 1/3
"use strict"
let F = require('fraction-math-js').builder;
let x=F("1+2/3*5");//1+2/3*5 = 13/3 Infix
let y=F("1+",x);//1+x = 16/3
let z=F("+",1,y);//1+y = 19/3 Prefix
let a=F(y,z,"+");//y+z = 35/3 Postfix
console.log("%s",F("+ 1 1"));//1+1=2 postfix and prefix need space
console.log(a.toString());//35/3
console.log(a.n.toString());//35
console.log(a.d.toString());//3
let b=F(a,"+",1.1);//a+1.1 = 383/30
console.log(b.toString());//383/30
console.log(b.toBigNumber().toNumber());//12.766666666666667
//save to sample.js and
> node sample.js
<!--write to amd.html-->
<script src="./lib/browser-polyfill.min.js" ></script>
<script src="./lib/require.js"></script>
<!--load babel-polyfill and require.js for es6 and AMD-->
<script>
//load bignumber
define("bignumber.js",["./lib/bignumber.min.js"],function(b){return b;});
//load fraction-math-js
require(["../fraction-math-js-es5.min.js"],function(fraction){
var F=fraction.builder;
document.write(F("1 + 1 / 3").toString());
});
</script>
<!--write to global.html-->
<script src="./lib/browser-polyfill.min.js" ></script>
<script src="./lib/bignumber.min.js"></script>
<script src="../fraction-math-js-es5.min.js"></script>
<!--load babel-polyfill , bignumber.js and fraction-math-js-->
<!--fraction-math-js bind to window.FractionMathJs-->
<script>
var F=window.FractionMathJs.builder;
document.write(F("1 + 1 / 3").toString());
</script>
FAQs
[](https://travis-ci.org/hjiayz/fraction-math-js)
The npm package fraction-math-js receives a total of 2 weekly downloads. As such, fraction-math-js popularity was classified as not popular.
We found that fraction-math-js 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.

Security News
/Research
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.

Research
/Security News
A large-scale campaign abused GitHub Actions in compromised repositories to exploit CVE-2026-41940 in cPanel and WHM and steal server credentials.

Security News
Five frontier LLMs generated the same nonexistent package names, leaving 53 available for potential slopsquatting across PyPI and npm.