An open API service indexing awesome lists of open source software.

https://github.com/holtwick/receipts-space

Receipts Space file format reference implementation
https://github.com/holtwick/receipts-space

crdt local-first localfirst sync synchronization

Last synced: 23 days ago
JSON representation

Receipts Space file format reference implementation

Awesome Lists containing this project

README

          

# Receipts Space

Receipts Space file format reference implementation

See [Receipts Space Specification](https://receipts-app.com/docs)

## Installation and Usage

### `export` command

This demo is realized as a CLI tool that can be used to export `.receipts-space` libraries to a human-readable format.

```sh
npm install
npm start export
```

### `info` command

To validate the integrity of a `.receipts-space` library and show detailed info, you can use the `info` command:

```sh
npm install
npm start export
```

### Usage

Use `npm start` to see all available commands.

```txt
Usage:
$ index.ts

Commands:

export Export current content to JSON files
info Information about the file and integrity check

For more info, run any command with the `--help` flag:
$ index.ts --help
$ index.ts export --help
$ index.ts info --help

Options:
-h, --help Display this message
-v, --version Display version number
```