binfix

0.0.4 • Public • Published

build status

binfix - Format big numbers

binfix represents large numbers in a more concise form.

EXAMPLES

$ bin/binfix -f 1000
1K
$ bin/binfix -p 1K
1000

$ node
> var binfix = require("binfix");
> binfix.format(1000000001);
'1B'
> binfix.parse('1B');
1000000000

HOMEPAGE

https://github.com/mcandre/node-binfix

NPM

https://www.npmjs.com/package/binfix

REQUIREMENTS

Optional

DEVELOPMENT

Test

Ensure the logic is correct:

$ grunt test

Guard can automatically run testing when the code changes:

$ bundle
$ guard -G Guardfile
...

CLI

Ensure the CLI works as expected:

$ grunt cucumber
Feature: Run example tests

  Scenario: Running example tests            # features/run_example_tests.feature:3
    Given the program has finished           # features/step_definitions/steps.rb:1
    Then the output is correct for each test # features/step_definitions/steps.rb:5

1 scenario (1 passed)
2 steps (2 passed)
0m0.142s

Lint

Keep the code tidy:

$ grunt lint

Spell Check

$ grunt aspelllint
...

Local CI

Guard can automatically lint when the code changes:

$ bundle
$ guard -G Guardfile-lint
...

Git Hooks

See hooks/.

Readme

Keywords

none

Package Sidebar

Install

npm i binfix

Weekly Downloads

0

Version

0.0.4

License

none

Last publish

Collaborators

  • mcandre