0.2.1 • Published 7 years ago

rapidgator v0.2.1

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

rapidgator NPM version

Javascript module for accessing the Rapidgator's API

Features:

  • Log In to account
  • Upload file by file path
  • Upload file by Buffer
  • Upload file to folder

Installation

npm install rapidgator --save

Usage

import Rapidgator from "rapidgator";

const loginOptions = {
    login: "yourlogin",
    password: "yourpassword"
};

const rapidgator = new Rapidgator(loginOptions);

rapidgator.logIn().then(() => {
    const uploadOptionsFilepath = {
        name: "filename.txt",
        filePath: "/tmp/somefile.txt"
    };

	const uploadOptionsBuffer = {
        name: "filename.txt",
        buffer: fs.readFileSync("/tmp/somefile.txt")
    };

    rapidgator.upload(uploadOptionsFilepath).then((url) => console.log(`Your file has been uploaded. URL: ${url}`)).catch(console.error);
}).catch((err) => console.error("Failed on logging in. Error: ", err));
0.2.1

7 years ago

0.2.0

7 years ago

0.1.0

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago