Last active
April 18, 2021 02:44
-
-
Save theDreamer911/27282845aab8e963b523990a58383a3e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fetch = require("node-fetch"); | |
fetch("https://type.fit/api/quotes") | |
.then((response) => response.json()) | |
.then((data) => console.log(data)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment