+3 votes
637 views
How to subscribe to YouTube Channels without a Google account

in Internet by (551k points)
reopened | 637 views

1 Answer

+4 votes
Best answer

How to subscribe to YouTube channels without an account

YouTube is the most traditional platform to access millions of videos of all kinds on the network and there we find videos of all kinds of categories. To subscribe to any YouTube channel, one of the essential requirements is to access our Google account, but for many users this can be a problem since they do not have an account or simply do not want to use it..

For this, there is vidlist, which allows us to subscribe to YouTube channels simply using the URL from the command line and thus obtain an HTML page within which are the links and thumbnails of the new videos. Vidlist is a tool designed to easily subscribe to the desired YouTube channels and get updates from them.

Vidlist is a command line tool that requires Node.js for its optimal operation, it will be possible to install it through a single command, and once installed, it can be used from the command prompt..

Vidlist features
Within its diverse characteristics we have:
  • Fast and reliable
  • You do not need any Google account or API key.
  • The latest videos are always at the top.
  • All data is processed and saved locally, nothing runs in the background.
  • The generated HTML file does not contain JavaScript.
  • Basic validation and XSS protection are in their place of origin.
  • Simplicity to see where you are in index.js to edit to change CSS when necessary.
  • Displays channel name information by video, title or description of the video.
  • You can add or remove subscription channels easily.
  • You can easily import or export subscription lists as a text file (JSON).

How to subscribe to YouTube channels without an account

Step 1

To start, we must confirm that we have installed Node.js and then execute the following for the installation of vidlist:
 npm install -g vidlist 
image
Note
If we do not have Node.js we can go to the following official link and download it from there:
Node.js
Step 2

Once installed, we can run the following line to validate the help options:
 vl –help 
image
Step 3

To subscribe to a YouTube channel, just run the following syntax:
 vl "Channel or Video URL" 
Step 4

For example, we will execute the following:
 vl 
image
Step 5

We can also use the following syntax to subscribe:
 vl -s “URL video or channel” 
Step 6

As we see, we have automatically been registered to the channel without using any account. To view all the updates of the channels to which we subscribe, we will use this command, which will print all the thumbnails of the videos and the URL in an HTML file, this file will be opened in the browser that we have by default:
 vl -upgo 
image
Step 7

In the browser we will see the following: image
Step 8

If we want to uninstall the utility, we will execute the following command:
 npm uninstall -g vidlist 
It's that simple to subscribe to the YouTube channels we want without having to have a Google account for it.

by (3.5m points)
edited
Thanks for posting this. It works really well. I just wanted to add a tip for Linux users. There is no vl executable binary on Linux when you run
npm install -g vidlist

Besides using the -g option to install vidlist requires you to be a root user.

Instead pick a directory that you have full access to on your Linux computer and install vidlist by running
npm install vidlist

You can run the commands listed here by opening a terminal and changing the directory to
cd <directory you chose>/node_modules/vidlist

And now run this to subscribe to channels you want:
node index.js -s "YouTube Channel You Want To Subscribe To"

And run this to launch the list of videos in your browser:
node index.js -upgo

Related questions

+5 votes
1 answer
asked Aug 24, 2019 in Internet by backtothefuture (551k points) | 209 views
+5 votes
1 answer
asked Oct 15, 2019 in Internet by backtothefuture (551k points) | 271 views
+3 votes
1 answer
asked Jun 20, 2020 in Android Tutorial by backtothefuture (551k points) | 340 views
+5 votes
1 answer
+3 votes
1 answer
asked Nov 18, 2019 in Internet by backtothefuture (551k points) | 244 views
Sponsored articles cost $40 per post. You can contact us via Feedback
10,632 questions
10,764 answers
510 comments
3 users