Node.js Tutorial to Make $100 Dollar Per Month Passive Income By Making Online Tools in JS
Mar 7, 2025
Get the full source code of application here:
Watch My Visual Studio Code IDE Setup Video For Fonts,Themes & Extensions
https://youtu.be/Bon8Pm1gbX8
Hi Join the official discord server to resolve doubts here:
https://discord.gg/cRnjhk6nzW
Visit my Online Free Media Tool Website
https://freemediatools.com/
Buy Premium Scripts and Apps Here:
https://procodestore.com/
Show More Show Less View Video Transcript
0:00
uh hello guys in this video I will show
0:02
you how to make $100 Bic income using
0:06
nodejs by making online tools so there
0:09
is a module that you can use inside uh
0:12
nodejs which lets you download the
0:14
source code of any website so
0:17
specifically I will be talking about
0:18
tool websites because tool websites you
0:21
can generate uh add Revenue by placing
0:24
advertisements so let's suppose I'm
0:26
taking this example of this website
0:28
calculator.net
0:31
so if you see if I disable the ad
0:34
blocker here how they are making the
0:35
income here so if I block this and again
0:40
reload this you will see they are
0:41
placing advertisements right
0:45
here if you want to get uh the source
0:48
code of this website there is a tool
0:50
that you can install inside nodejs it's
0:53
an open source Library so just go to
0:56
npmjs.com and here you just need to
0:58
search for this module
1:00
node site downloader this is actually
1:03
the package here and uh it's a command
1:06
line tool so just install this package
1:10
and it's completely free and what this
1:14
package do it actually scrapes all the
1:17
websites SC source code including
1:20
JavaScript so this will only script
1:22
static websites which uses JavaScript or
1:25
react CHS or any front end framework you
1:28
can globally install this package I've
1:30
already done that
1:32
so simple command just copy
1:36
this npmi - G for globally installing
1:39
this on your system and after you
1:41
install this now you can actually copy
1:44
paste the address of whichever tool
1:46
website you want to get the source code
1:48
let's suppose I'm taking this example
1:50
calculator.net it's a very popular
1:53
website so what you need to do just
1:55
create a
1:57
simple I will give the source code in
1:59
the description so you can directly copy
2:02
paste the source code you paste the uh
2:04
link
2:06
here so whatever website you are
2:08
scraping or downloading the source code
2:10
so we basically given a URL right here
2:13
and we are using the buil-in nodejs
2:15
child process module right here and we
2:17
using this execute method and uh now we
2:21
are simply calling this tool right here
2:23
not side downloader and we are passing
2:25
the download flag and which website URL
2:28
we are passing it d G and it will create
2:32
this output folder so this is actually
2:35
the command here and it executes this
2:38
command
2:41
programmatically so if you execute this
2:44
if I execute now this application node
2:47
index JS so what you will see it in the
2:50
left hand side it will create a folder
2:52
holding all the files of this
2:55
website so it will start downloading the
2:57
source code of this website
3:04
so it will actually create a folder you
3:06
will see the folder is automatically
3:09
created and inside this you will see all
3:11
the HTML CSS and JavaScript code is
3:14
being downloaded so it's a very good
3:17
module you can directly install it
3:19
globally you can see that it is one by
3:21
one scraping all this website source
3:24
code and you will get a lot of tools
3:26
website ideas as well so once you scrape
3:28
a very popular website right you will
3:30
get a lot of tools you can make your own
3:32
website just modify them if you are a
3:35
programmer if you know some source code
3:38
or you can also use their tools and
3:41
directly upload to their website and you
3:44
can place Google AdSense ISO any
3:46
advertisements and earn a passive income
3:48
of
3:49
$100 so you can see that so it actually
3:51
scrapes all the files here that are
3:54
necessary you can individually open this
3:56
file here in
4:00
for opening this you should have a
4:02
extension in vs code just install this
4:06
extension live server which actually
4:08
starts a live development server which
4:10
is this simply install this extension 60
4:13
million installs are there simply click
4:15
the install button so once it is
4:17
installed you can directly open a live
4:19
server just to test it
4:22
locally so just it is installing here it
4:26
will be easy for you to deploy this to a
4:28
shared hosting plan as well if you make
4:30
a website it's very easy you can deploy
4:33
all these websites this is just HTML
4:35
code right right
4:39
here you can see now it has actually
4:42
scraped all the source code and we are
4:45
running it on locally so it's a simple
4:47
calculator right here and you can see
4:50
that so starting date and then we can
4:53
provide a ending date as well so
4:56
calculate
5:01
so you can see it actually give you a
5:04
notification whenever it's completed you
5:06
will see downloaded all the source code
5:08
and the JavaScript files will be located
5:10
in the JavaScript folder you can see all
5:13
the source code is downloaded and you
5:16
can see all the files
5:19
here so these are the images these are
5:22
the phones the are the CSS file right
5:24
here so in this way guys you can see it
5:39
you just need to find out the index.
5:41
HTML file right here so where just yeah
5:46
so this is actually our Index this is
5:48
the homepage of the website so you need
5:50
to open this right here so this is your
5:53
overall website which is downloaded you
5:55
can go to any individual tool you can
5:57
see this is a BM BM Mi calculator so
6:03
here these are all the calculators which
6:05
are there so it's a very good tool guys
6:07
it will scrape all
6:09
the you can pick any individual website
6:12
if you are working this is you can see
6:14
scientific calculator and here you can
6:17
see that
6:23
so so these are calculators right here
6:25
if you see that random number generator
6:34
so in this
6:37
way uh you can pick any
6:39
website which is a static website you
6:42
can just write free online tools so in
6:45
this way they are making advertisement
6:47
Revenue so you can pick any individual
6:49
website just copy the link just make
6:51
sure that it doesn't uses PHP or backend
6:54
code because this is a limitation of
6:56
this it can't download the backend code
6:58
because it's located on the
7:00
server but if it's a static website then
7:03
you can follow follow this approach
7:05
simply plug this I will give this uh
7:07
source code in the description guys if
7:10
you need this you need to just plug the
7:13
URL and then it will download all the
7:15
source code and then if you are a
7:17
developer you can modify the code as
7:22
well so you can pick any keyword here
7:27
whichever keyword you are targeting
7:28
let's suppose pass password generator so
7:31
the you some websites are onepage
7:33
websites as well static websites which
7:36
lets you you just need to do some
7:38
research here on whichever keyword you
7:40
are making a website so just pick that
7:43
website and you need to research
7:45
whichever website you you can see this
7:47
is actually a one website
7:56
here and one more thing you can indiv
7:59
usually uh there is another way that you
8:01
can download some source code if it's a
8:05
static website you just need
8:11
to like this you can right click on
8:14
individual website and there is you can
8:16
go to this view page Source there is
8:19
this is the second Way by which you can
8:22
but this is slightly complicated way
8:24
because some website doesn't reveal
8:26
their source code ad so this is actually
8:29
a good module you can directly install
8:31
it globally inside your system it's a
8:33
nodejs you should have nodejs installed
8:35
on your machine and then you can
8:37
actually make some quite little passive
8:39
income if you want to make a website and
8:41
if you need to get the source code of
8:43
some
8:46
websites so you can Target any keyword
8:49
here let's
8:50
suppose image
8:54
converter image converter video
8:56
converter all these static websites so
8:59
you will websites are endless you can
9:02
Target this website as well I just make
9:04
sure that it doesn't
9:06
uses you can just write here statically
9:09
in
9:22
browser so you can
9:27
see this is another website right right
9:29
here cool
9:36
utils the process is simple you plug the
9:39
URL that I showed
9:46
you so this is
9:49
another you plug the URL if you see that
9:54
in the source code we are requiring it
9:56
the child process module we it's a
9:57
built-in module of node CHS
9:59
so once again if you run the script it
10:01
will again create another folder so with
10:04
this you can
10:06
actually get the entire website source
10:09
code you will see it will actually
10:10
scrape
10:12
everything if it is uh built using some
10:16
react chairs framework you can one third
10:19
approach is that you can even go to
10:21
GitHub where open source software are
10:25
available and here you can simply type
10:28
github.com image converter so you will
10:31
also get a lot of U open source code as
10:35
well where the developers
10:38
actually provide you with so let's
10:41
suppose this is actually the website
10:42
it's image converter you will see that
10:45
it's a image converter so it's built
10:48
using statically so what you need to do
10:50
you need to copy this
10:52
address paste it right here and then run
10:55
the script right here so now it will
10:58
actually create this folder right here
11:01
and it will scrape everything so this is
11:04
a best example so you can see that so it
11:06
actually scraped everything now you just
11:09
need to choose
11:13
files so you can choose uh any file
11:16
right here
11:29
so just you basically can resize this
11:33
image you can see it's a complete tool
11:36
that we we running it locally right here
11:42
so so this is your images downloaded
11:46
from PNG to jpg so in this way you can
11:48
build any tool kind of a website in
11:50
nodejs by downloading The Source Code by
11:52
using this open source module that I
11:55
showed you then you can place Google
11:57
AdSense or ISO any add Network to
12:00
actually to your website to add to earn
12:03
passive income so these are some
12:06
approaches that I
12:09
recommend so if you need this source
12:13
code just download this model globally
12:16
and then you simply call it inside your
12:19
nodejs application so I will give this
12:22
snippet in the description of this video
12:24
you can directly copy paste it and thank
12:26
you very much for watching this video
12:28
and also check out my website free
12:30
mediat tools.com which contains
12:32
thousands of tools regarding audio video
12:34
and image and I will be seeing you in
12:36
the next video
#Programming
#Affiliate Programs
#Scripting Languages
#Web Stats & Analytics
