bookshelf-engine
v1.2.0
Published
An engine for telling people about your bookshelf
Downloads
2
Readme
bookshelf-engine
An engine for telling people about your bookshelf
Quickstart
- Register for an ISBNdb account
- Set your API key as an environment variable
export ISBNDB_API_KEY=yourkey
- Set the path to your on-disk cache (saves ISBNdb API requests)
export BOOKSHELF_CACHE_DIR=/path/to/cache/dir
Usage
$ npm install -g bookshelf-engine
$ bookshelf COMMAND
running command...
$ bookshelf (-v|--version|version)
bookshelf-engine/1.2.0 darwin-x64 node-v8.12.0
$ bookshelf --help [COMMAND]
USAGE
$ bookshelf COMMAND
...
Commands
bookshelf build [FILE]
build a bookshelf HTML file
USAGE
$ bookshelf build [FILE]
OPTIONS
-o, --outputPath=outputPath (required) output file name
-t, --templatePath=templatePath (required) template path
EXAMPLE
$ bookshelf build -o bookshelf.html -t mytemplate.mustache mybookshelf.yml
See code: src/commands/build.ts
bookshelf help [COMMAND]
display help for bookshelf
USAGE
$ bookshelf help [COMMAND]
ARGUMENTS
COMMAND command to show help for
OPTIONS
--all see all commands in CLI
See code: @oclif/plugin-help