Socket
Book a DemoInstallSign in
Socket

@artsy/gemup

Package Overview
Dependencies
Maintainers
6
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@artsy/gemup

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

latest
Source
npmnpm
Version
0.2.0
Version published
Maintainers
6
Created
Source

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

Keywords

gemup

FAQs

Package last updated on 14 Dec 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts