You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.5 KiB
41 lines
1.5 KiB
|
2 years ago
|
# @uppy/xhr-upload
|
||
|
|
|
||
|
|
<img src="https://uppy.io/images/logos/uppy-dog-head-arrow.svg" width="120" alt="Uppy logo: a superman puppy in a pink suit" align="right">
|
||
|
|
|
||
|
|
[](https://www.npmjs.com/package/@uppy/xhr-upload)
|
||
|
|

|
||
|
|

|
||
|
|

|
||
|
|
|
||
|
|
The XHRUpload plugin handles classic XHR uploads with Uppy. If you have an exiting Apache/Nginx/Node or whatever backend, this is probably the Uppy uploader plugin you are looking for.
|
||
|
|
|
||
|
|
Uppy is being developed by the folks at [Transloadit](https://transloadit.com), a versatile file encoding service.
|
||
|
|
|
||
|
|
## Example
|
||
|
|
|
||
|
|
```js
|
||
|
|
import Uppy from '@uppy/core'
|
||
|
|
import XHRUpload from '@uppy/xhr-upload'
|
||
|
|
|
||
|
|
const uppy = new Uppy()
|
||
|
|
uppy.use(Uppy, {
|
||
|
|
// Options
|
||
|
|
})
|
||
|
|
```
|
||
|
|
|
||
|
|
## Installation
|
||
|
|
|
||
|
|
```bash
|
||
|
|
$ npm install @uppy/xhr-upload
|
||
|
|
```
|
||
|
|
|
||
|
|
Alternatively, you can also use this plugin in a pre-built bundle from Transloadit’s CDN: Edgly. In that case `Uppy` will attach itself to the global `window.Uppy` object. See the [main Uppy documentation](https://uppy.io/docs/#Installation) for instructions.
|
||
|
|
|
||
|
|
## Documentation
|
||
|
|
|
||
|
|
Documentation for this plugin can be found on the [Uppy website](https://uppy.io/docs/xhr-upload).
|
||
|
|
|
||
|
|
## License
|
||
|
|
|
||
|
|
[The MIT License](./LICENSE).
|