UNPKG
miau-api
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.9
1.0.8
1.0.7
1.0.6
1.0.0
Es una api que te da imagenes de gatos.
github.com/hackycraftyt/miau-api
hackycraftyt/miau-api
miau-api
/
index.js
10 lines
(8 loc)
•
216 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
fetch =
require
(
'node-fetch'
)
module
.
exports
= {
gato
:
async
function
(
) {
let
dataApi =
fetch
(
'http://aws.random.cat/meow'
) .
then
(
res
=>
res.
json
())
return
dataApi.
image
; } }