0.1.6 • Published 1 year ago
@odelljl/firefoocli v0.1.6
FireFoo CLI Import
This utility imports data exported from the FireFoo desktop tool in its JSONL format.
Newline-Separated JSONL Files
This utility imports data exported in JSONL format. Why?
- There is no limit to the number of documents that can be imported. JSON imports could require the entire file to be loaded in memory.
- JSONL are easier to deal with, as FireFoo has essentially flattened the sub-collection tree for you ahead of time.
Installation
This package is designed to be used as a development dependency within your project.
Please install within your project with one of the following commands:
# npm
npm install @odelljl/firefoocli --save-dev
#yarn
yarn add @odelljl/firefoocli --dev
Alternatively, install it globally on your system:
# npm
npm install @odelljl/firefoocli -g
#yarn
yarn global add @odelljl/firefoocli
Limitations and Future Feature Possibilities
- Currently, supports only the
__time__
special datatype. There are others could add TBD as needed: Data Types. - Batch/transaction support is not yet implemented.