jscord-storage

Free unlimited file storage


Keywords
discord, file-hosting, file-upload, image-hosting, storage, storage-api, unlimited-storage, upload, uploader
License
MIT
Install
npm install jscord-storage@1.0.3

Documentation

jscord-storage

Server Status

Installation

yarn add jscord-storage

Example

import { uploadFromFile, uploadFromURL } from 'jscord-storage';

const testUploadFromURL = async () => {
  const response = await uploadFromURL(
    'test.jpg',
    'https://cdn.discordapp.com/attachments/858938620425404426/1076560199218892902/waifu-animemoeus.jpg'
  );

  console.log(response);
};

const testUploadFromFile = async () => {
  const response = await uploadFromFile('./test.js');

  console.log(response);
};

testUploadFromURL();
testUploadFromFile();

API

About

Increase Upload Limit

Example Implementation