Node.js

Last updated: September 15th, 2019

Code

JavaScript Code Example
const fetch = require('node-fetch);
fetch('https://weebs4life.ga/api/neko')
    .then(res => res.json())
    .then(json => {
        let imageUrl = json.url
        console.log(imageUrl)
    })