![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@fleetbase/ember-accounting
Advanced tools
Updated port of the great accounting.js library to ES6 modules that integrates seamlessly with ember-cli
This is a fork of ember-cli-accounting which was a port of the great accounting.js library to ES6 modules that integrates seamlessly with ember-cli and the Fleetbase ecosystem.
Just add like any other ember-cli addon:
npm install @fleetbase/ember-accounting
Compatible with Ember version 4.0 and above
You no longer need to access the global accounting, you can import only what you need:
import formatMoney from '@fleetbase/ember-accounting/format-money'
Although you can import everything as expected:
import accounting from '@fleetbase/ember-accounting'
This addon also registers 2 handy helpers in your application: format-number
and format-money
.
You can set options using bound or unbound options like this:
{{format-money price symbol=selectedCurrency format="%v %s"}} <!-- "123.45 £" -->
Any option not set will have the usual default value:
{{format-number "1234.567" precision=2}} <!-- "1,234.57" -->
You can use an initializer to set some default values at initializations and avoid having to repeat over and over the options in the helpers.
Use something like this:
// app/initializers/accounting.js
import { currency, number } from '@fleetbase/ember-accounting/settings';
export default {
name: 'accounting.js',
initialize: function() {
currency.symbol = "€";
number.decimal = ",";
number.thousand = ".";
}
};
Although this is almost a 1:1 port of accountant.js, there is a few differences:
Array.isArray
, Array.prototype.map
and Object.prototype.toString
.
They are not required in modern browsers, and ember.js (unless you opt-out with EXTEND_PROTOTYPES = false
) already provides polyfills for those functions.This library does not make any change in the public api of accounting.js, so you can read the official documentation here
FAQs
Updated port of the great accounting.js library to ES6 modules that integrates seamlessly with ember-cli
We found that @fleetbase/ember-accounting demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.