How to Create a IP Finder Web Application With JS

Hey,
If you are new in JavaScrip it will be interesting for you. Here you can learn to use API on JS. It will be a very very easy project for you. First you have to learn what is an API. API stands for Application Programming Interface pretty messy r…


This content originally appeared on DEV Community and was authored by Masudur Rahaman Sourav

Image description

Hey,
If you are new in JavaScrip it will be interesting for you. Here you can learn to use API on JS. It will be a very very easy project for you. First you have to learn what is an API. API stands for Application Programming Interface pretty messy right but it is a fun thing. In easy way API will send you some data you just have to show them in your Webpage you have to just learn how to fetch a API and how to show the data on your webpage. If you want to learn more about the API just click here and watch the video. It will explain you in a easy way. But again you don't have to learn the internal processing of an API.

First, We have to write some code for our HTML page. Here is a simple code which I used you can use this or write by your own :

Index.html

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Find Your IP</title>
    <link rel="stylesheet" href="style.css">
</head>

<body>
    <div class="main-items">
        <div class="main-text">
            <h1>Here Is Your IP :</h1>
            <h2 class="ip"></h2>
            <h1>Your ISP is :</h1>
            <h2 class="isp"></h2>
            <h1>Your Location :</h1>
            <h2 class="location"></h2>
        </div>
    </div>
    <script src="main.js"></script>
</body>

</html>

It will look so simple without any styles you probably know that HTML without CSS it almost like a man without cloths. So, let's put some cloths on our HTML webpage. HA! HA! HA!,
Here is my CSS style file but here again you can style your own webpage in your own way.

style.css

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@1,500&display=swap');
body {
    font-family: 'Fira Sans', sans-serif;
    background-image: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 119, 1) 24%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

h1 {
    color: rgb(42, 81, 209);
}

.main-text {
    width: 25em;
    background-color: aliceblue;
    text-align: center;
    border: 1em solid rgb(73, 167, 230);
    border-radius: 2em;
}

.main-text h1 {
    margin: .5em;
}

.main-items {
    display: flex;
    justify-content: center;
    align-content: center;
    margin-top: 7em;
}

Now we will add some brain on our webpage which call JavaScript. First we will have to fetch the API if you don't know how to fetch a API watch the video he explained this clearly Click here . get your own API link from ipify . Then fetch the API in this way :

fetch('Your URL provided by ipify')
  .then(response => response.json())
  .then(data => changeTheDom(data));

here fetch getting response from ipify API and .json making this as json . Then you data is sending on changeTheDom function.

Here the changeTheDom function code:

function changeTheDom(data) {
    let IP = data.ip;
    let dom1 = document.querySelector('.ip');
    dom1.innerHTML = IP;
    let ISP = data.isp;
    let dom2 = document.querySelector('.isp');
    dom2.innerHTML = ISP;
    let dom3 = document.querySelector('.location');
    dom3.innerHTML = data.location.city + ' , ' + data.location.region + ' , ' + data.location.country;
}

in this piece of function we are changing the DOM we are getting the ip element by data.ip. We selected the ip class by querySelector and replacing its innerHTML value with IP.And in this way we changed other values also.

Thanks for reading .
My project's live site : Live
Project's Source file : Source

Follow me on

Twitter
LinkedIn
GitHub
Website


This content originally appeared on DEV Community and was authored by Masudur Rahaman Sourav


Print Share Comment Cite Upload Translate Updates
APA

Masudur Rahaman Sourav | Sciencx (2022-01-02T18:58:35+00:00) How to Create a IP Finder Web Application With JS. Retrieved from https://www.scien.cx/2022/01/02/how-to-create-a-ip-finder-web-application-with-js/

MLA
" » How to Create a IP Finder Web Application With JS." Masudur Rahaman Sourav | Sciencx - Sunday January 2, 2022, https://www.scien.cx/2022/01/02/how-to-create-a-ip-finder-web-application-with-js/
HARVARD
Masudur Rahaman Sourav | Sciencx Sunday January 2, 2022 » How to Create a IP Finder Web Application With JS., viewed ,<https://www.scien.cx/2022/01/02/how-to-create-a-ip-finder-web-application-with-js/>
VANCOUVER
Masudur Rahaman Sourav | Sciencx - » How to Create a IP Finder Web Application With JS. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/01/02/how-to-create-a-ip-finder-web-application-with-js/
CHICAGO
" » How to Create a IP Finder Web Application With JS." Masudur Rahaman Sourav | Sciencx - Accessed . https://www.scien.cx/2022/01/02/how-to-create-a-ip-finder-web-application-with-js/
IEEE
" » How to Create a IP Finder Web Application With JS." Masudur Rahaman Sourav | Sciencx [Online]. Available: https://www.scien.cx/2022/01/02/how-to-create-a-ip-finder-web-application-with-js/. [Accessed: ]
rf:citation
» How to Create a IP Finder Web Application With JS | Masudur Rahaman Sourav | Sciencx | https://www.scien.cx/2022/01/02/how-to-create-a-ip-finder-web-application-with-js/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.