Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/swzzl-com/arc-bookiza
ArcValues for Bookiza client/server connection.
https://github.com/swzzl-com/arc-bookiza
arc arc-bookiza bookiza-client
Last synced: 4 days ago
JSON representation
ArcValues for Bookiza client/server connection.
- Host: GitHub
- URL: https://github.com/swzzl-com/arc-bookiza
- Owner: swzzl-com
- Created: 2018-07-31T21:38:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-13T20:11:41.000Z (almost 2 years ago)
- Last Synced: 2024-12-28T20:38:26.196Z (27 days ago)
- Topics: arc, arc-bookiza, bookiza-client
- Language: JavaScript
- Homepage: http://bookiza.io
- Size: 19.5 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Arc-Bookiza
Returns the ARC object to register Bookiza Client with, and connects it to the [Bubblin Superbook API](https://bubblin.io).
## Usage:
```
import read from 'arc-bookiza'
import os from 'os'/* Get to the root directory of the machine */
const homeDir = os.homedir()
const location = `${homeDir}/.bookizarc`
// const location = path.join(__dirname, '..', '.bookizarc');read(location)
.then((data) => {
// Do something with arc.rc values.
...
...
})
.catch((err) => {
// handle error.
});
```