Skip to content

Instantly share code, notes, and snippets.

View Wyru's full-sized avatar
🎮
Let's make a game

Will Saymon Wyru

🎮
Let's make a game
View GitHub Profile
@Wyru
Wyru / routesLoader.js
Created March 29, 2020 15:45
Dynamically loads routes for express
// Examples
// "routes/get.js" for a get on "/"
// "route/users/get.js" for a get on "/users"
// "route/users/post.js" for a post on "/users"
// "route/users/$id/post.js" for a post on "/users/:id"
import fs from 'fs-readdir-recursive'
import express from 'express'
@Wyru
Wyru / imageToBase64.js
Created June 17, 2021 13:29
Example of how convert a image to base64 with js
const Axios = require('axios').default;
const handle = async() => {
const response = await Axios.get("https://game-icons.net/icons/ffffff/000000/1x1/lorc/robe.svg");
const base64 = Buffer.from(response.data).toString('base64');
console.log(base64);
}