1.2.0 • Published 5 years ago

bookshelf-engine v1.2.0

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

bookshelf-engine

An engine for telling people about your bookshelf

oclif Version CircleCI Downloads/week License

Quickstart

  1. Register for an ISBNdb account
  2. Set your API key as an environment variable export ISBNDB_API_KEY=yourkey
  3. 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