Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

pixeldrainjs

gehirudm37ISC0.3.8TypeScript support: included

A NodeJS Wrapper for the pixeldrain.com API

pixeldrain

readme

Pixeldrain.js

A NodeJS wrapper for the pixeldrain.com API

Installation

$ npm install pixeldrainjs

Usage

import { Pixeldrain } from 'pixeldrainjs'

let client = new PixelDrain("your-api-key")

//Upload a new file
let file = await client.uploadFile({
    path: "./cat.jpg",
    name: "this is a file I uploaded from pixeldrain.js",
    anonymous: false,
})

//You can delete and download the file
await file.download("./downloads")
await file.delete()

//You can also get information about a existing file as well
let someOtherFile = await client.getFile("o1k5QbTE")
console.log(someOtherFile.id) //o1k5QbTE