cloudinary_js
cloudinary_js copied to clipboard
Cloudinary JavaScript library
const postData = () => { const data = new FormData(); data.append("file", image); data.append("upload_preset", "insta-clone"); data.append("cloud_name", "sumitsoni") fetch("https://api.cloudinary.com/v1_1/sumitsoni/image/upload", { method: "POST", body: data }) .then(res => res.json()) .then(data => {...
Currently, this library uses jQuery UI widget [1.12.1](https://github.com/cloudinary/cloudinary_js/blob/master/js/jquery.ui.widget.js), which is 4 years old and contains some [vulnerabilities](https://security.snyk.io/package/npm/jquery-ui). Is there any plan to upgrade it to a newer version?