UNPKG
pokemon-game
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
Pokemon game — Get 'em all
github.com/bukinoshita/pokemon-game
bukinoshita/pokemon-game
pokemon-game
/
lib
/
get-pokemons.js
11 lines
(7 loc)
•
196 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
'use strict'
const
fetch =
require
(
'node-fetch'
)
module
.
exports
=
async
() => {
const
res =
await
fetch
(
`https://pokedex-api.now.sh/pokemons`
)
const
body =
await
res.
json
()
return
body }