Skip to main content
The Deno 2 Release Candidate is here
Learn more

Social Media Downloader

This is a simple library in Node Js and Deno to download videos from social media websites. It supports TikTok, Twitter, Youtube only. if want any other social media website, please open an issue.

         

Importing in Deno

import * as dl from 'https://deno.land/x/social_media_downloader@Latest/mod.ts';

Using in Deno

Tiktok

const result = await dl.tiktok("https://www.tiktok.com/@billieeilish/video/7014570556607433990");
console.log(result);

Twitter

const result = await dl.twitter('https://twitter.com/AJArabic/status/1476130879437037569');
console.log(result);

Youtube

const result = await dl.youtube('https://www.youtube.com/watch?v=dQw4w9WgXcQ');
console.log(result);