@hyper63/storage-demo

1.0.0 • Public • Published

hyper63 upload example

This project is used for the hyper63 storage sandbox to demo how to upload a file to hyper63 storage.

const FormData = require('form-data')
const fetch = require('fetch')
const s = require('@hyper63/storage-demo')
const url = 'https://play.hyper63.com'
const token = '...'

const form = new FormData()
form.append('file', s, {
  type: 'image/jpg',
  filename: 'somepicture.jpg'
})

await ( await fetch(`${url}/storage/posters`, {
  method: 'POST',
  headers: { authorization: `Bearer ${token}` },
  body: form
})).json()

/@hyper63/storage-demo/

    Package Sidebar

    Install

    npm i @hyper63/storage-demo

    Weekly Downloads

    0

    Version

    1.0.0

    License

    MIT

    Unpacked Size

    1.46 MB

    Total Files

    5

    Last publish

    Collaborators

    • hyper63