2.0.0 • Published 3 years ago
snapchat-downloader v2.0.0
Installing
npm install snapchat-downloader
Importing
const snapchatDownloader = require("snapchat-downloader");
Using
let username = "nanoosh771"; // Snapchat account username :)
(
async () => {
let result = await snapchatDownloader(username); // The result is an array
console.log(result);
}
)();
All
const snapchatDownloader = require("snapchat-downloader");
let username = "nanoosh771";
(
async () => {
let result = await snapchatDownloader(username);
console.log(result);
}
)();