
Company News
Socket Joins New OpenJS Program to Fund Node.js Security Work
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.
Calculate compound interest in js (browser/node.js/browserify).
Install the module with:
npm install interestjs
or with Bower:
bower install interest-js --save
var Interest = require('interestjs');
var inst = Interest(singleAmount, months, interestRate, params);
// returns
{
payments : [
{
capital: number,
interest: number,
tax: number,
capitalSum: number,
sum: number
}
],
interestSum : number,
capitalSum : number,
taxSum : number,
sum : number
}
Interest(singleAmount, months, interestRate, params)
| Argument | type | default | Description |
|---|---|---|---|
| singleAmount | number | *required | single saving amount (monthly) |
| months | number | *required | months of savings |
| interestRate | number | *required | interest rate in percent (ex. 3.5) |
| params | object | undefined | parameters |
{
installments : [
{
capital : number,
interest : number,
installment : number,
remain : number
}
],
amount : number,
interestSum : number,
capitalSum : number,
sum : number
}
nodejs / browserify example
var Interest = require('../lib/interest.js');
var interest_1 = new Interest(1000, 12, 5, {tax:19});
console.log(interest_1);
// systematic savings over in 12 montchs with 5% interest rate and interest tax 19% (in poland we have 19%)
Browser example:
<script src="../../lib/interest.js"></script>
<script>
var interest_1 = new Interest(1000, 12, 5, {tax:19});
</script>
more examples here
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality.
Copyright (c) 2014 Grzegorz Klimek
Licensed under the MIT license.
FAQs
Calculate compound interest in js (browser/node.js/browserify)
The npm package interestjs receives a total of 17 weekly downloads. As such, interestjs popularity was classified as not popular.
We found that interestjs 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.

Company News
Socket is joining the OpenJS Security Stewardship Program to fund Node.js vulnerability research, maintainer remediation, and security releases.

Security News
Two compromised GitHub Actions were re-enabled with malicious tags intact, exposing thousands of downstream repositories to Mini Shai-Hulud.

Research
/Security News
A malicious Firefox extension fetches its payload after installation to evade detection, steal Google session cookies, and automate account takeover.