Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

kodingkeun/teradood

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

teradood

API nya mokad ges, paling nanti bikin repo baru
Join komunitas kita di Kodingkeun Community

Important Note

This library was originally a project for Terabox & Doodstream Direct Link here

Install

Use the stable version:

yarn add @kodingkeundev/teradood   

Example Usage

  • Example Doodstream Downloader

    const { TeraDood } = require('@kodingkeundev/teradood')
    
    var url = 'xxx'
    
    TeraDood.doods(url)
      .then(result => {
        // action here
        console.log(result) // for see details result
      })
      .catch(error => {
        // action error here
        console.error('Something went wrong', error) // for see details error
      })

    Note: Of course, replace xxx with an actual doodstream valid url.

  • Example Terabox Downloader

    const { TeraDood } = require('@kodingkeundev/teradood')
    
    var url = 'xxx'
    TeraDood.terabox(url)
      .then(result => {
        // action here
        console.log(result) // for see details result
      })
      .catch(error => {
        // action error here
        console.error('Something went wrong', error) // for see details error
      })

    Note: Of course, replace xxx with an actual terabox valid url.