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 🙏

© 2025 – Pkg Stats / Ryan Hefner

fraction-math-js

v0.2.1

Published

[![Build Status](https://travis-ci.org/hjiayz/fraction-math-js.svg?branch=master)](https://travis-ci.org/hjiayz/fraction-math-js)

Readme

fraction-math-js

Build Status

bignumber fraction calculator and node module.

need ES6 support!

node4.1.1 arguments:
	--harmony --harmony_array_includes
node7.6.0 no arguments.

Install

npm install fraction-math-js -g

REPL

> fcalc
input expression,like:
fcalc> (1+1)*2/12

(1+1)*2/12  =  1/3

Load

"use strict"

let F = require('fraction-math-js').builder;

Use

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

Run

//save to sample.js and

> node sample.js

browser(AMD)view demo

<!--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>

browser(global)view demo

<!--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>