verify-url
v1.0.0
Published
## Usage Using npm:
Downloads
7
Maintainers
Readme
verify url
Usage
Using npm:
$ npm i verify-url
In Javascript:
import { isValidUrl } from "verify-url";
(async () => {
const url = 'https://www.example.com';
const isValid = await isValidUrl(url);
console.log(`Is ${url} valid? ${isValid}`);
})();
License
This project is licensed under the ISC License
Bugs/Issues
Please report bugs and issues here.