GitXplorerGitXplorer
S

net-check-win10

public
0 stars
1 forks
2 issues

Commits

List of commits on branch master.
Verified
3d249e246732776eadc8a7ec3ee97a96882d180c

release v0.3.1

SSyed-Umair committed 3 years ago
Verified
75ea7945e0605d262b38b0462d52b44a0be8bb66

Delete npm-publish.yml

SSyed-Umair committed 3 years ago
Verified
46658bd5ebb1a5be5c767dbc5c6635761a77ae1e

Create npm-publish.yml

SSyed-Umair committed 3 years ago
Verified
5177330c9ff33d9bc11d410ff8d1a24ab2cbcd6b

Merge pull request #23 from manipandi/removed-cached-value

SSyed-Umair committed 3 years ago
Unverified
cb7329f1da0f301164b05a0c786b6e8730bc97b3

feat: removed cached value in the variable

mmanipandi committed 3 years ago
Verified
77c1cf07c012a0b26de3a239166c1a792f0cdc7a

Update module-publish.yml

SSyed-Umair committed 5 years ago

README

The README file for this repository.

net-check-win10

A Node.js Module to check network connectivity or not using Native network access check for Windows 10. You don't need to make any Ajax request in Windows 10 to check for network access. Returns promise resolves to true with network access and to false without network access.

Install Module

    npm install net-check-win10

Note: Requires Node >= 8.0.0

Usage

    const checkInternet = require('net-check-win10');
    checkInternet().then(val => console.log(val));
    // prints 'true' or 'false' depending on networking connectivity