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
- Host: GitHub
- URL: https://github.com/holtwick/receipts-space
- Owner: holtwick
- License: apache-2.0
- Created: 2025-02-28T10:07:31.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-06-14T13:47:20.000Z (about 1 year ago)
- Last Synced: 2026-04-19T03:40:38.048Z (4 months ago)
- Topics: crdt, local-first, localfirst, sync, synchronization
- Language: TypeScript
- Homepage: https://receipts-app.com/docs
- Size: 18.6 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY
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
```