nodejs-module-ivm-01
v2.0.0
Published
This is the first exercise of practice 12 of the WEB Frontend Technologies module, and in this part, this module provides information about the domain of a page entered by the user.
Readme
Create a nodeJS module to get the information from a domain.
This is the first exercise of practice 12 of the WEB Frontend Technologies module, and in this part, this module provides information about the domain of a page entered by the user.
Installation
npm i nodejs-module-ivm-01Usage
First import the library:
const getDomainInformation = require("nodejs-module-ivm-01");For get the information from a domain:
getDomainInformation("url of the page", domainInformation => {
console.log(domainInformation);
});