2.0.0 • Published 2 years ago

nodejs-module-ivm-01 v2.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

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-01

Usage

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);
});