Skip to content
/ gemup Public

Lightweight Javascript utility for using Artsy's Gemini service to upload directly to S3

License

Notifications You must be signed in to change notification settings

artsy/gemup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gemup

Lightweight Javascript utility for using Artsy's Gemini service to upload directly to S3. Used internally at Artsy, so not useful to general public—but open source by default!

Installation

Use gemup one of three ways:

Install with Yarn/NPM

yarn add @artsy/gemup

Example usage

JavaScript

Import into your project:

import gemup from "@artsy/gemup";

Add an upload function and reference it on an <input>:

const handleUploadClick = (e) => {
  gemup(e.target.files[0], {
    app: "force",
    geminiHost: 'https://media.artsy.net',
    fail: function (err) {
      console.log("Ouch!", err);
    },
    add: function (src) {
      console.log("We got a data-uri image client-side!", src);
    },
    progress: function (percent) {
      console.log("<3 progress bars, file is this % uploaded: ", percent);
    },
    done: function (src) {
      console.log("Done uploading, here's the S3 url: ", src);
    },
  });
};

...

<input type="file" multiple={false} onChange={(e) => handleUploadClick(e)} />

License

MIT

About

Lightweight Javascript utility for using Artsy's Gemini service to upload directly to S3

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages