Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@hackmesenpai/anyviddl

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hackmesenpai/anyviddl

Simple and Super Fast Video Downloader - Get download links fast and easy.

  • 1.0.1
  • unpublished
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Any Video Downloader

AnyVidDL Logo

A Simple and Super Fast Video Downloader - Get download links fast and easy.

HOW TO INSTALL?

npm i @hackmesenpai/anyviddl

Require to use AnyVidDL Function.

//CommonJS
const { getVidLink } = require('@hackmesenpai/anyviddl');

SIMPLE USAGE

//Using then()
getVidLink({
 link: 'https://youtu.be/HY3lNkHbpS0'
}).then((res)={
 console.log(res)
})

//Using Await
let res = await getVidLink({
 link: 'https://youtu.be/HY3lNkHbpS0'
})
console.log(res)

Sample Responses

Success Response

{
  API_Response: {
    status: 'OK',
    message: 'Successfully Uploaded to our Server and Converted!',
    link: 'https://file-downloader.net/d.php?h=57140768599'
  }
}

Error Response

//If link is invalid or no video_link provided
{
  API_Response: {
    status: 'ERROR',
    message: 'Please submit a valid video URL' 
  }
}

//If cannot convert the video
{
  API_Response: {
    status: 'ERROR',
    message: "We can't convert this video - try again."
  }
}

All Params

ParamsTypeExplanationSample
linkstringLink of the video you want to download."https://youtu.be/HY3lNkHbpS0"

Keywords

FAQs

Package last updated on 30 Sep 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc