• cloning
git clone https://github.com/Swag666baby/url-shortener
cd url-shortener
• running
yarn
tsc
node dist/server
const axios = require("axios");
async function shortener(){
const request = await axios.post("http://localhost:3000/shorter", {"url": "https://github.com"})
console.log(request.data)
}
shortener()