1.0.2 • Published 7 years ago

simple-image-uploader v1.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

Image Uploader

Just a simple base64 image upload library for Node.JS. It features upload, custom path and image resize.

Install

$ npm install --save simple-image-uploader

Usage

It's all about Image.upload(). The method returns a promise with the path of the uploaded image, so you can easily store it afterward.

Note : destination folder must exist

import Image from 'simple-image-uploader';

let width = 1600,
    height = 1900;

const path = 'myAwesomeImage.jpg';

Image.upload(base64String, width, height, path)
    .then((image) => console.log(image)); // will return 'myAwesomeImage.jpg';

Run tests

$ npm test

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago