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 🙏

© 2024 – Pkg Stats / Ryan Hefner

moneybit

v0.11.0

Published

A Cli tool for creating the general ledger of a journal

Downloads

26

Readme

A Cli tool for creating a general ledger from the journal.

CircleCI codecov Standard - JavaScript Style Guide

How to use

First, install the cli via npm:

npm install moneybit

Or via yarn:

yarn add moneybit

This installs ./node_modules/.bin/mb command.

Then:

./node_modules/.bin/mb ledger journal.yml --chart chart.yml

This outputs the general ledger in yaml format to stdout according to the given yaml files journal.yml and chart.yml. See the below for details.

Journal YAML

The journal is the series of trades in chronological order. Each trade should have the following format

id: 1001
date: 2015-01-05
desc: Start the business
dr:
  Cash in bank: 1000
cr:
  Capital: 1000
  • id is an arbitrary string and has to be unique in the journal.
  • date is the date of the trade.
  • desc is the description of the trade.
  • dr means the debits of the trade.
    • dr has at least one account. In this case, it has Cash in bank account with the amount 1000.
    • dr can have multiple accounts.
  • cr means the credits of the trade.
    • cr has at least one account. In this case, it has Capital account with the amount 1000.
    • cr can have multiple accounts.
  • The total amount of the credits and debits must be the same in a account.

Multiple entry journal looks like the following:

id: 1
date: 2015-01-05
desc: Start the business
dr:
  Cash in bank: 1000
cr:
  Capital: 1000
---
id: 2
date: 2015-01-30
desc: Sold the item
dr:
  Cash in bank: 1000
cr:
  Sales: 1000
---
...

Each document in a yaml represents a trade.

Chart YAML

This file defines which account belongs to which major account type. For example, the account Sales belongs Revenue, Cash belongs to Asset etc.

The format is like the following:

asset:
- Account receivable
- Cash in deposit
liability:
- Account payable
equity:
- Capital
revenue:
- Sales
expense:
- Freight
- Communications
- Business trip
- Library cost

Ledger YAML

This is the output of this cli and represents the general ledger. The accounts in the input journal are collected by its account type and its major type. It has the following format.

asset:
  Cash in bank:
    total: 1050
    accounts:
      - date: 2015-01-01
        desc: Start the business
        dr: 1000
        cor: Capital
        ref: 1001
liability: ...
equity: ...
revenue: ...
expense: ...

CLI

mb ledger

The usage of cli is as follows:

mb ledger path/to/journal.yml [--chart path/to/chart.yml]

The default for --chart is chart.yml.

mb bs

bs subcommand outputs the balance sheet as yaml.

$ mb bs path/to/journal [--chart path/to/chart.yml]
asset:
  Cash in hand: 37072
  Accounts receivable: 0
  Cash in bank: 892000
  total: 929072
liability:
  Accounts payable: 5616
  total: 5616
equity:
  Capital: 2432
  Retained earnings: 921024
  total: 923456
total: 929072

mb monthly

monthly subcommand outputs the monthly total of the given type. (This information is required in Japanese official tax document.)

mb monthly path/to/journal "Cash in hand" [--chart path/to/chart.yml]

mb monthly-ledger

monthly-ledger subcommand outputs the monthly ledger of the given type.

mb monthly-ledger path/to/journal "Sales" [--chart path/to/chart.yml]

LICENSE

MIT