@kodingkeundev/teradood

1.2.0 • Public • Published

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.

Readme

Keywords

none

Package Sidebar

Install

npm i @kodingkeundev/teradood

Weekly Downloads

4

Version

1.2.0

License

ISC

Unpacked Size

4.38 kB

Total Files

7

Last publish

Collaborators

  • kodingkeundev