mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-17 16:50:22 +00:00
58 lines
1.6 KiB
Text
58 lines
1.6 KiB
Text
---
|
||
sidebar_position: 1
|
||
---
|
||
|
||
import Tabs from '@theme/Tabs';
|
||
import TabItem from '@theme/TabItem';
|
||
import UppyCdnExample from '/src/components/UppyCdnExample';
|
||
import { QuickStartLinks } from '../src/components/QuickStartLinks/QuickStartLinks.tsx';
|
||
|
||
# Quick start
|
||
|
||
Uppy is a sleek, modular JavaScript file uploader that integrates seamlessly
|
||
with any application. It’s fast, has a comprehensible API and lets you worry
|
||
about more important problems than building a file uploader.
|
||
|
||
:::tip
|
||
|
||
You can take Uppy for a walk inside StackBlitz with a
|
||
[minimal drag & drop](https://stackblitz.com/edit/vitejs-vite-yzbujq?file=main.js/g)
|
||
experience or a
|
||
[full featured dashboard](https://stackblitz.com/edit/vitejs-vite-zaqyaf?file=main.js).
|
||
|
||
:::
|
||
|
||
<QuickStartLinks
|
||
items={[
|
||
{
|
||
name: 'I want a full featured, extendable UI',
|
||
description: 'Learn more about the Dashboard',
|
||
link: '/docs/dashboard',
|
||
},
|
||
{
|
||
name: 'I want a minimal drag & drop UI',
|
||
description: 'We have a lightweight plugin for that',
|
||
link: '/docs/drag-drop',
|
||
},
|
||
{
|
||
name: 'Which uploader do I need?',
|
||
description: 'Choosing the uploader you need',
|
||
link: '/docs/guides/choosing-uploader',
|
||
},
|
||
{
|
||
name: 'I want to add files from remote sources',
|
||
description: 'Such as Google Drive, Dropbox, Instagram',
|
||
link: '/docs/companion',
|
||
},
|
||
{
|
||
name: 'I’d like a project example',
|
||
description: 'Try out one of our extensive example projects',
|
||
link: 'https://github.com/transloadit/uppy/tree/main/examples',
|
||
},
|
||
{
|
||
name: 'I have a question',
|
||
description: 'Our community forum is there to help',
|
||
link: 'https://community.transloadit.com/',
|
||
},
|
||
]}
|
||
/>
|