VueMastery video downloader
You can find Codes used in the courses at Code-Pop GitHub page.
You can see List of existing courses in here
- first
cd data/ANY_DIRRECTORY
likecd data/advanced-components
- download a directory with
node ../../mirror.js
The script required Python 3.6+ and requests package. you can install it with pip install requests
- first
cd
to the directory of the course you want:cd data/ANY_DIRRECTORY
likecd data/advanced-components
- download entire course with
python3 ../../course-downloader.py
you can use this options:
-q
for setting video quality:-q 1080
if the given quality was unavailable, the highest available quality will be used-s
for downloading subtitles:-s
-l
for subtitles language:-l en
as rate limit policy applied to subtitle files, downloading a subtitle may fail. in this situation, the subtitle file will contain the subtitle like.
If you want to download all courses, you can use the downloadAll.sh
script.
# give execution rights to the script
chmod +x ./downloadAll.sh
# run using node
./downloadAll.sh
# run using python
./downloadAll.sh --python
If ypu want to make a zip file from downloaded courses you can use --zip
or --zip-and-remove
options.
This feature requires zip
package be installed, you can install using:
- on Fedora/CentOS/RHEL based distro:
yum install -y zip
- on Debian/Ubuntu based distro:
apt-get install -y zip
The --zip-and-remove
also removes the directory after creating the zip archive to reduce disk usage.
- Open a lesson on the browser
- Run
document.getElementsByTagName('iframe')[0].src
in the browser's console to get {Video LINK} - Run
node download.js {Video LINK}
in project directory. Also, you can set quality of videonode download.js {Video LINK} 720
, Default set to 1080 - Run
node sitemap.js
to get list of courses
Please put new video links to the data folder to help others, If you still have access to the videos.
- Touring Vue Router
- [2021-04-27] Lesson 10: Global and Per-Route Guards
- [2021-05-18] Lesson 11: Lazy Loading Routes
- Real World Testing
- [2021-05-04] Lesson 2: Setup & Testing like a User
- [2021-05-11] Lesson 3: Mocking Vuex Stores
- Vuex Fundamentals
- [2021-05-04] Lesson 3: Updating State
- [2021-05-25] Lesson 4: Fetching State
- [2021-06-01] Lesson 5: Error Handling
- [2021-06-08] Lesson 6: Next Steps