uppy/packages/@uppy/companion
Antoine du Hamel 01d7ea13e9
meta: use Yarn v3 instead of npm (#3237)
* meta: use Yarn v3 instead of npm

* Update CONTRIBUTING.md to fix linter errors

* remove remaining npm commands

* Update deps
2021-10-20 15:16:59 +02:00
..
bin lerna link convert (#1730) 2019-07-19 12:16:36 +02:00
infra/kube companion: fixes docker version tagging. fixes #1579. 2020-06-30 14:44:52 +12:00
output companion: smaller heroku deployment (#2845) 2021-04-01 12:30:26 +02:00
src ci: test Companion with Node.js 16.x (#3273) 2021-10-20 12:05:34 +02:00
test ci: test Companion with Node.js 16.x (#3273) 2021-10-20 12:05:34 +02:00
.dockerignore Attempt at fixing docker build /cc @kiloreux 2018-08-16 17:30:14 +02:00
.gitignore refactor: rename service-dog -> companion 2018-07-22 18:53:57 +01:00
ARCHITECTURE.md Add retext to markdown linter (#3024) 2021-10-14 16:10:45 +02:00
docker-compose-dev.yml Update and fix docker-compose (#1076) 2018-10-10 12:55:03 +02:00
docker-compose-test.yml refactor: rename service-dog -> companion 2018-07-22 18:53:57 +01:00
docker-compose.yml Update and fix docker-compose (#1076) 2018-10-10 12:55:03 +02:00
Dockerfile meta: use Yarn v3 instead of npm (#3237) 2021-10-20 15:16:59 +02:00
Dockerfile.test meta: use Yarn v3 instead of npm (#3237) 2021-10-20 15:16:59 +02:00
env.test.sh companion,box: Box provider implementation (#2549) 2020-11-13 15:37:00 +01:00
env_example companion,box: Box provider implementation (#2549) 2020-11-13 15:37:00 +01:00
KUBERNETES.md Add retext to markdown linter (#3024) 2021-10-14 16:10:45 +02:00
LICENSE refactor: rename service-dog -> companion 2018-07-22 18:53:57 +01:00
Makefile refactor: rename service-dog -> companion 2018-07-22 18:53:57 +01:00
nodemon.json refactor: rename service-dog -> companion 2018-07-22 18:53:57 +01:00
package.json meta: use Yarn v3 instead of npm (#3237) 2021-10-20 15:16:59 +02:00
Procfile companion: smaller heroku deployment (#2845) 2021-04-01 12:30:26 +02:00
README.md Add retext to markdown linter (#3024) 2021-10-14 16:10:45 +02:00
tsconfig.json companion: generate type declaration files (#2749) 2021-03-09 21:40:07 +00:00

Companion

Uppy logo — a superman puppy in a pink suit

Build Status

Companion is a server integration for Uppy file uploader.

It handles the server-to-server communication between your server and file storage providers such as Google Drive, Dropbox, Instagram, etc. Companion is not a target to upload files to. For this, use a https://tus.io server (if you want resumable) or your existing Apache/Nginx server (if you dont). See here for full documentation

Install

npm install @uppy/companion

If you dont have a Node.js project with a package.json you might want to install/run Companion globally like so: [sudo] npm install -g @uppy/companion@1.x (best check the actual latest version, and use that, so (re)installs are reproducible, and upgrades intentional).

Usage

companion may either be used as pluggable express app, which you plug to your existing server, or it may also be run as a standalone server:

Plug to an existing server

import express from 'express'
import bodyParser from 'body-parser'
import session from 'express-session'
import companion from '@uppy/companion'

const app = express()
app.use(bodyParser.json())
app.use(session({ secret: 'some secrety secret' }))
// ...
// be sure to place this anywhere after app.use(bodyParser.json()) and app.use(session({...})
const options = {
  providerOptions: {
    google: {
      key: 'GOOGLE_KEY',
      secret: 'GOOGLE_SECRET',
    },
  },
  server: {
    host: 'localhost:3020',
    protocol: 'http',
  },
  filePath: '/path/to/folder/',
}

app.use(companion.app(options))

To enable companion socket for realtime feed to the client while upload is going on, you call the socket method like so.

// ...
const server = app.listen(PORT)

companion.socket(server, options)

Run as standalone server

Please make sure that the required env variables are set before runnning/using companion as a standalone server. See.

$ companion

If you cloned the repo from GitHub and want to run it as a standalone server, you may also run the following command from within its directory

npm start

Deploy to heroku

Companion can also be deployed to Heroku

mkdir uppy-companion && cd uppy-companion

git init

echo 'export COMPANION_PORT=$PORT' > .profile
echo 'node_modules' > .gitignore
echo '{
  "name": "uppy-companion",
  "version": "1.0.0",
  "scripts": {
    "start": "companion"
  },
  "dependencies": {
    "@uppy/companion": "^1.13.1"
  }
}' > package.json

npm i

git add . && git commit -am 'first commit'

heroku create

git push heroku master

Make sure you set the required environment variables.

See full documentation