This is a basic Image Filtering application using React and pixi.js.
I couldn't get PixiReact to work with React 18, so I just used Pixi.js directly.
https://pixijs.com
https://github.com/pixijs/pixijs
Vite is the best way to get a client side React app up and running:
https://github.com/vitejs/vite
The Golang (Gin) backend handles file upload to Cloudinary CDN
https://github.com/gin-gonic/gin
amazing CDN: https://cloudinary.com/users/register_free
You need a cloudinary account to make it work, for a demo visit https://maleeyo.com.
cd server
go build main.go -o server
./server
yarn && yarn dev
make sure to update your frontend port in server/main.go
CORS configuration
docker build -t image-filtering .
docker run -d --env-file=path_to_your_env_file -p 8080:8080 --name image-filtering image-filtering