3.1.1 • Published 6 years ago

node-reaver v3.1.1

Weekly downloads
80
License
-
Repository
-
Last release
6 years ago

NPM module to interact with the Cortex Reaver API

Now with SSL!

Used in pretty much the exact same way as the actual API. The name of the endpoint becomes the function with a promise or callback based return.

Example:

var cr = require('node-reaver')

//Endpoint for the image command 'boop' would be http://api.shodanbot.com/interactions/boop on the site
//Here it becomes the following:

cr.boop().then(boop=>{
  console.log(boop)
//{"img": "https://cdn.shodanbot.com/api/interactions/boop/boop4.PNG?raw=true"}
})

Or with callbacks:

var cr = require('node-reaver')

cr.boop(function(req, res) {
  console.log(res)
  //{"img": "https://cdn.shodanbot.com/api/interactions/boop/boop1.PNG?raw=true"}
})
3.1.1

6 years ago

3.1.0

6 years ago

3.0.0

6 years ago

2.0.4

6 years ago

2.0.3

6 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.1.7

6 years ago

1.1.6

6 years ago

1.1.5

6 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago