3.0.0 • Published 10 years ago

heroku-rediscloud-plugin-example v3.0.0

Weekly downloads
1
License
ISC
Repository
github
Last release
10 years ago

Heroku RedisCloud Plugin Example Circle CI

Code Climate Test Coverage npm version License

js-standard-style

This is an example plugin to demonstrate how to build Heroku CLI plugins. For a simpler example, check out heroku-hello-world.

You can test this plugin by installing it:

$ heroku plugins:install heroku-rediscloud-plugin-example
$ heroku help rediscloud

Structure

This plugin has a basic index.js that exports topics and commands:

exports.topics = {
  name: 'rediscloud',
  description: 'manages a rediscloud instance'
}

exports.commands = [
  require('./commands/clear'),
  require('./commands/get'),
  require('./commands/set')
]

We then use node's require to pull in the commands in ./commands. Each command outputs some metadata like help text, arguments, etc. Check the files out inside this repo to see more details.

Also check out the attributes set in package.json.

3.0.0

10 years ago

2.0.0

11 years ago

1.1.0

11 years ago

1.0.0

11 years ago