UNPKG
random.dog.img
Version:
latest (2.0.1)
2.0.1
2.0.0
1.0.2
1.0.1
1.0.0
This npm is utilizing https://dog.ceo/dog-api/.
random.dog.img
/
index.js
6 lines
(5 loc)
•
187 B
JavaScript
View Raw
1
2
3
4
5
6
module.exports =
async
() => {
const
axios = require(
'axios'
);
const
response =
await
axios.
get
(
'https://dog.ceo/api/breeds/image/random'
);
return
response.data.message; }