An AI that makes meme created by the Programming Team over at Blimp Academy.
-
Make sure you have NodeJS and NPM
-
Install browserify globally:
npm install -g browserify
-
Clone the repo with Github CLI:
gh repo clone ownsupernoob2/AI-meme-maker
, download the ZIP and unZIP it or use Github Desktop to download it
-
use
npm install
which will download all the necessary dependencies -
now you can test it out :)
-
Make SURE you are coding in src/main.js
-
everytime you save src/main.js use
browserify ./src/main.js -o ./scripts/main.js
which will make a copy to scripts folder where the html will use -
This will have to run this script over and over everytime so becareful because I myself keep forgeting to use it.
You see browsers don't support require()
so browserify will convert it so the browser understand.
It is there because I'm too lazy to delete it. It is a conversion from ES6 to ES5 because most browsers can't support ES6 fully. But I kept having errors because browserify doesn't work well when you turn it into ES5.