index.html from the public folder.
<h1> title and a button labeled “get pokemon”.When you click the button, your index.js (sent with index.html) should send a fetch request to route /get_pokemon_data which should send the following data:
const pokemon = [
{name: "bulbasaur", img: "http://img.pokemondb.net/artwork/bulbasaur", age: 3},
{name: "ivysaur", img: "http://img.pokemondb.net/artwork/ivysaur", age: 4},
{name: "venusaur", img: "http://img.pokemondb.net/artwork/venusaur", age: 5},
{name: "charmander", img: "http://img.pokemondb.net/artwork/charmander", age: 2},
{name: "charizard", img: "http://img.pokemondb.net/artwork/charizard", age: 7},
{name: "squirtle", img: "http://img.pokemondb.net/artwork/squirtle", age: 8},
{name: "wartortle", img: "http://img.pokemondb.net/artwork/wartortle", age: 6}
];
When you get the data, display just the names in a list.
.jpg to the end of the img strings./delete_pokemon. The route should remove that pokemon from the array, and send back the new array.