npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vine-backup

v1.4.1

Published

A very basic tool for downloading your Vines before the service shut down.

Downloads

14

Readme

NPM version JavaScript Style Guide Dependency Status npm MIT license Size

vine-backup

A very basic project to backup your Vines (and optionnaly the ones you liked) or any other user Vines (and optionnaly the ones he liked) before the service shut down, as announced recently.

Quick start

Clone or fork this repo and install the project.

$ git clone --depth 1 https://github.com/phiphou/vine-backup.git
$ cd vine-backup
$ npm install

Then run the app and provide it your Vine credentials with :

$ node src/app.js --email YOUR_EMAIL --password YOUR_PASSWORD

GIF

Install

First, make sure you've got NodeJS installed. If not, go to nodejs.org to download and install it. It will also install NPM.

Then, clone or fork this repo and install the project.

$ git clone --depth 1 https://github.com/phiphou/vine-backup.git
$ cd vine-backup
$ npm install

You can also use the new Yarn package manager.

$ yarn

Usage

Owner's Vines

Run the app and provide it your Vine credentials with :

$ node ./src/app.js --email YOUR_EMAIL --password YOUR_PASSWORD

The app will get the list of all your Vines and download them sequentially in the ./Vines/me folder.

Liked Vines

You can also download the Vines you liked in addition to your own vines by adding a --likes flag:

$ node ./src/app.js --email YOUR_EMAIL --password YOUR_PASSWORD --likes

The app will store liked Vines in the ./Vines/likes folder.

Any user Vines

You can download the Vines from any user by adding a --user flag and providing any Twitter user screen_name.

You also can add a --likes flag if you want to download Vines liked by the user.

$ node ./src/app.js --email YOUR_EMAIL --password YOUR_PASSWORD --user ANY_TWITTER_SCREEN_NAME

The app will store Vines in the ./Vines/[ANY_TWITTER_SCREEN_NAME] folder and optionnaly likes in the ./Vines/[ANY_TWITTER_SCREEN_NAME]/likes folder.

Export links list

You can export a list of the Vines URLs instead of download them by adding a --list flag.

$ node ./src/app.js --email YOUR_EMAIL --password YOUR_PASSWORD --list

The app will create a links list in the ./Vines/vines_links_list.txt file.

You can then use the list with WGET for instance :

$ wget -i vine_link_list.txt

Filenames

By default, Vines filenames are in the form {POST_ID}.mp4.

If you add a --dates flag, it will be {YYYY-MM-DD_HH-MM-SS}_{POST_ID}.mp4

Reposts

By default, reposted Vines are downloaded. There are two flags no_reposts and only_reposts that alter the default behaviour.

no_reposts

By providing the no_reposts flag, any Vines that will were reposted will not be downloaded:

$ node ./src/app.js --email YOUR_EMAIL --password YOUR_PASSWORD --no_reposts
only_reposts

By providing the only_reposts flag, only Vines that were reposted will be downloaded:

$ node ./src/app.js --email YOUR_EMAIL --password YOUR_PASSWORD --only_reposts

License

This project is licensed under the terms of the MIT license.