Browse Source

docs: :tl: preset stub

Renée Kooi 6 years ago
parent
commit
daded55bab
3 changed files with 38 additions and 3 deletions
  1. 1 1
      website/src/docs/contributing.md
  2. 35 0
      website/src/docs/transloadit-preset.md
  3. 2 2
      website/src/stats.ejs

+ 1 - 1
website/src/docs/contributing.md

@@ -1,7 +1,7 @@
 ---
 title: "Contributing"
 type: docs
-order: 4
+order: 5
 ---
 
 ## Uppy development

+ 35 - 0
website/src/docs/transloadit-preset.md

@@ -0,0 +1,35 @@
+---
+type: docs
+order: 4
+title: "Transloadit Preset"
+module: "@uppy/transloadit-preset"
+permalink: docs/transloadit-preset/
+---
+
+[Transloadit][transloadit] is a service that helps you handle file uploads, resize, crop and watermark your images, make GIFs, transcode your videos, extract thumbnails, generate audio waveforms, and so much more. In short, [Transloadit][transloadit] is the Swiss Army Knife for your files.
+
+The Transloadit Preset is an Uppy-based library that helps you talk to the Transloadit API. It includes a modal UI file picker with support for imports from third-party services, integration with HTML forms, and more. Because it's based on Uppy, you can add any existing Uppy plugin to add more functionality.
+
+## Install
+
+The Transloadit Preset can be downloaded from npm:
+
+```shell
+npm install --save @uppy/transloadit-preset
+```
+
+Then, with a bundler such as [webpack][webpack] or [Browserify][browserify], do:
+
+```js
+const transloadit = require('@uppy/transloadit-preset')
+```
+
+## File Picker
+
+## Form
+
+## Programmatic Uploads
+
+[transloadit]: https://transloadit.com/
+[browserify]: https://browserify.org
+[webpack]: https://webpack.js.org

+ 2 - 2
website/src/stats.ejs

@@ -3,8 +3,8 @@ title: Stats
 type: docs
 layout: stats
 permalink: docs/stats/
-alias: 
+alias:
   - guide/stats/
   - stats/
-order: 5
+order: 6
 ---