📅  最后修改于: 2022-03-11 15:02:55.378000             🧑  作者: Mango
const fetch = require("node-fetch")
fetch(`https://api.imgflip.com/get_memes`)
.then((response) => {
return response.json();
})
.then((myJson) => {
console.log(myJson);
});