DragonFireGames it uses sqlite

if(typeof(success) != "function") success = function(){};
if(typeof(failure) != "function") failure = function(){};
if(!Array.isArray(columns)) return console.error("'keys' is not an array!");
sql = `CREATE TABLE ${name}(id PRIMARY KEY NOT NULL unique, ${columns.join(",")})`
database.run(sql, (err) => {
if(err) {failure(`failed to create table "${name}": ${err}`); return console.error(err)}
success(`successfully created table "${name}"`);
});

this is just for creating a table

    DragonFireGames before you made the backend have jimpify, did you use Varrience's request service? and if you did, did you have any trouble transferring JSON between them?

      Half of me wants to write a discord bot that interacts with code.org using requests and stores messages in a discord server, would that be a good idea? It'd be something similar to widgetbot.

        I won't make it for a while, considering my plate is quite full at the moment, but it is an interesting idea.

          Chat