Skip to content

Commit

Permalink
"Upload strategies -> "Uploaders"
Browse files Browse the repository at this point in the history
  • Loading branch information
Murderlon committed Jan 4, 2023
1 parent 889d9fa commit 1c29370
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
sidebar_position: 1
---

# Choosing the upload strategy you need
# Choosing the uploader you need

Versatile, reliable uploading is at the heart of Uppy. It has many configurable plugins to suit your needs.
In this guide we will explain the different plugins, their strategies, and when to use them based on use cases.
Expand Down
2 changes: 1 addition & 1 deletion docs/quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ This was a taste of what Uppy can do, its power comes from modularity and versat

Here are some interesting things:

- [Choosing the upload strategy you need](/docs/guides/choosing-upload-strategy).
- [Choosing the uploader you need](/docs/guides/choosing-uploader).
- With [Companion](/docs/companion) your users will be able to select files from remote sources, such as Instagram,
Google Drive and Dropbox. It bypasses the client (so a 5 GB video isn’t eating into your users’ data plans)
and uploads to your preferred final destination.
Expand Down
2 changes: 1 addition & 1 deletion docs/upload-strategies/_category_.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"label": "Upload strategies",
"label": "Uploaders",
"position": 7
}
4 changes: 2 additions & 2 deletions docs/upload-strategies/aws-s3-multipart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import UppyCdnExample from '/src/components/UppyCdnExample';
# AWS S3 Multipart

The `@uppy/aws-s3-multipart` plugin can be used to upload files directly to an S3 bucket (or S3-compatible provider)
using S3’s Multipart upload strategy.
using S3’s Multipart uploader.

## When should I use it?

:::tip
Not sure which upload strategy is best for you? Read “[Choosing the upload strategy you need](/docs/guides/choosing-upload-strategy)”.
Not sure which uploader is best for you? Read “[Choosing the uploader you need](/docs/guides/choosing-uploader)”.
:::

You can use this plugin when you prefer a _client-to-storage_ over a _client-to-server-to-storage_ (such as [Transloadit](/docs/upload-strategies/transloadit) or [Tus](/docs/upload-strategies/tus)) setup.
Expand Down
2 changes: 1 addition & 1 deletion docs/upload-strategies/aws-s3.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Uploads can be signed using either [Companion][companion docs] or a custom signi
## When should I use it?

:::tip
Not sure which upload strategy is best for you? Read “[Choosing the upload strategy you need](/docs/guides/choosing-upload-strategy)”.
Not sure which uploader is best for you? Read “[Choosing the uploader you need](/docs/guides/choosing-uploader)”.
:::

You can use this plugin when you prefer a _client-to-storage_ over a _client-to-server-to-storage_ (such as [Transloadit](/docs/upload-strategies/transloadit) or [Tus](/docs/upload-strategies/tus)) setup.
Expand Down
2 changes: 1 addition & 1 deletion docs/upload-strategies/transloadit.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ such as transcoding video, resizing images, zipping/unzipping, [and much more][t
## When should I use it?

:::tip
Not sure which upload strategy is best for you? Read “[Choosing the upload strategy you need](/docs/guides/choosing-upload-strategy)”.
Not sure which uploader is best for you? Read “[Choosing the uploader you need](/docs/guides/choosing-uploader)”.
:::

Transloadit’s strength is versatility.
Expand Down
2 changes: 1 addition & 1 deletion docs/upload-strategies/tus.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The `@uppy/tus` plugin brings resumable file uploading with [Tus](http://tus.io)
## When should I use it?

:::tip
Not sure which upload strategy is best for you? Read “[Choosing the upload strategy you need](/docs/guides/choosing-upload-strategy)”.
Not sure which uploader is best for you? Read “[Choosing the uploader you need](/docs/guides/choosing-uploader)”.
:::

[Tus][tus] is an open protocol for resumable uploads built on HTTP.
Expand Down
2 changes: 1 addition & 1 deletion docs/upload-strategies/xhr.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The `@uppy/xhr-upload` plugin is for regular uploads to a HTTP server.
## When should I use it?

:::tip
Not sure which upload strategy is best for you? Read “[Choosing the upload strategy you need](/docs/guides/choosing-upload-strategy)”.
Not sure which uploader is best for you? Read “[Choosing the uploader you need](/docs/guides/choosing-uploader)”.
:::

When you have an existing HTTP server and you don’t need Transloadit services or want to run a [tus][] server.
Expand Down
2 changes: 1 addition & 1 deletion docs/uppy-core.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ No matter the uploading experience you’re looking for, it all starts with inst

You can use `@uppy/core` and [build your own UI](/docs/guides/building-your-own-ui-with-uppy)
or go for the [Dashboard](/docs/interfaces/dashboard) integration.
For an uploading plugin, you can refer to [choosing the upload strategy you need](/docs/guides/choosing-upload-strategy).
For an uploading plugin, you can refer to [choosing the uploader you need](/docs/guides/choosing-uploader).

If you want to see how it all comes together, checkout the [examples](/examples).

Expand Down

0 comments on commit 1c29370

Please sign in to comment.