1.2.0 • Published 11 months ago

@kodingkeundev/teradood v1.2.0

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

teradood

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.

1.2.0

11 months ago