ntp-client
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/ntp-client package

0.5.3 • Public • Published

ntp-client Build Status

Pure Javascript implementation of the NTP Client Protocol

Getting Started

Install the module with: npm install ntp-client

var ntpClient = require('ntp-client');
 
ntpClient.getNetworkTime("pool.ntp.org", 123, function(err, date) {
    if(err) {
        console.error(err);
        return;
    }
 
    console.log("Current time : ");
    console.log(date); // Mon Jul 08 2013 21:31:31 GMT+0200 (Paris, Madrid (heure d’été))
});

Contributors

  • Clément Bourgeois (https://github.com/moonpyk)
  • Callan Bryant (https://github.com/naggie)

License

Copyright (c) 2014 Clément Bourgeois Licensed under the MIT license.

Readme

Keywords

Package Sidebar

Install

npm i ntp-client

Weekly Downloads

1,648

Version

0.5.3

License

none

Last publish

Collaborators

  • moonpyk