0.0.7 • Published 5 years ago
@acciosolutions/images v0.0.7
@acciosolutions/images
A library to upload images from NodeJS
The API of this library is inspired by https://imgur.com
Install
Using npm
npm install --save @acciosolutions/imagesUsing yarn
yarn add @acciosolutions/imagesUsage
You need import the AccioClient from library
import { AccioClient } from "@acciosolutions/images";import AccioClient from "@acciosolutions/images";const AccioClient = require("@acciosolutions/images");const { AccioClient } = require("@acciosolutions/images");You need setup the AccioClient with ClientID and ClientSecret
const client = new AccioClient({
clientId: string;
clientSecret: string;
})Methods
AccioClient uploadFromPath()
Usage
const file = path.resolve(__dirname, "image.png");
const response: UploadResponse = await client.uploadFromPath(file);Interfaces
interface UploadResponse {
deleteHash: string;
uuid: string;
url: string;
directUrl: string;
createdAt: string;
updatedAt: string;
}License
@acciosolutions/images is released under the MIT license.