Skip to content

CA1R7/node-annonfiles

Repository files navigation

node-annonfiles

Annonfiles is unofficial API for uploading and downloading files.

Installation

if you are using NPM :

npm install node-annonfiles

or YARN :

yarn add node-annonfiles

Usage

const { upload, getInfo, download } = require("node-annonfiles");

(async () => {
  try {
    // If you have not keyAcess let it empty
    const uploadFile = await upload("./file.txt", { key: "PUT_KEYACCESS" });
    console.log(uploadFile); // you will get same result on the top
    // functions download,getInfo = (id: string) => result json
  } catch (e) {
    console.log(e);
  }
})();

CLI

Upload files

node-annonfiles --upload file.txt

with keyaccess original from Annonfiles website

node-annonfiles --upload file.txt@{keyaccess}

Output

Wait for uploading file.txt
{
    "status": true,
    "data": {
        "file": {
            "url": {
                "full": "https://anonfiles.com/D9KbB411u2/file_txt",
                "short": "https://anonfiles.com/D9KbB411u2"
            },
            "metadata": {
                "id": "D9KbB411u2",
                "name": "file.txt",
                "size": {
                    "bytes": 5,
                    "readable": "5 B"
                }
            }
        }
    }
}
  • Make sure store the ID of any output for use it to get the direct download link.

Download files

You should use ID of the file you already uploaded it, I used D9KbB411u2 just for an example.

NOTE: you should use proxy for passing cloudflare detector.

Normal usage :

node-annonfiles --download D9KbB411u2

With proxy usage :

node-annonfiles --download D9KbB411u2@proxy

Output

Fetching direct link...
https://cdn-140.anonfiles.com/D9KbB411u2/d0db8fb0-1623874914/file.txt

Get Info Files

Use ID for get the info of files.

node-annonfiles --get D9KbB411u2

Output

Fetching File Metadata...
{
  "url": {
    "short": "https://anonfiles.com/D9KbB411u2",
    "full": "https://anonfiles.com/D9KbB411u2/file_txt"
  },
  "metadata": {
    "size": { "bytes": 5, "readable": "5 B" },
    "name": "file_txt",
    "id": "D9KbB411u2"
  }
}

License

Copyright (c) 2021 CA1R71 Licensed under the Apcahe 2.0 license.

About

Anonfiles unofficial API for uploading and downloading files

Topics

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages