وحدة Node.JS لجلب الوقت الحالي من خوادم NTP وإرجاع معلومات الإزاحة.
يتطلب NTP UDP وهو غير متوفر في سياق المتصفح!
# using Yarn
$ yarn add ntp-time-sync
# using NPM
$ npm install ntp-time-sync
فكر في استخدام المكتبة كمكتبة مفردة، بحيث لا تقوم كل مكالمة لـ getTime
بإطلاق حزم NTP جديدة. ستقوم المكتبة نفسها بإدارة الحد الأدنى/الحد الأقصى لأوقات الاستقصاء.
يتم إطلاق عدة طلبات إلى خوادم وقت NTP متعددة وسيتم تجميع الاستجابات.
// ES6:
import { NtpTimeSync } from "ntp-time-sync" ;
// pre-ES6:
// const NtpTimeSync = require("ntp-time-sync").NtpTimeSync;
const timeSync = NtpTimeSync . getInstance ( ) ;
// request 1
timeSync . getTime ( ) . then ( function ( result ) {
console . log ( "current system time" , new Date ( ) ) ;
console . log ( "real time" , result . now ) ;
console . log ( "offset in milliseconds" , result . offset ) ;
} )
// request 2, will use cached offset from previous request
timeSync . getTime ( ) . then ( function ( result ) {
console . log ( "current system time" , new Date ( ) ) ;
console . log ( "real time" , result . now ) ;
console . log ( "offset in milliseconds" , result . offset ) ;
} )
// ES2017 style
const result = await timeSync . getTime ( ) ;
console . log ( "real time" , result . now ) ;
يقوم <ntpTimeSyncInstance>.getTime()
بإرجاع كائن Promise
والذي سيتم حله في النهاية باستخدام كائن يحتوي على المعلومات التالية:
ملكية | وصف |
---|---|
now | وقت NTP الحالي ("الوقت الحقيقي") |
offset | الإزاحة المحسوبة بين وقت النظام المحلي ووقت NTP |
يقوم <ntpTimeSyncInstance>.now()
بإرجاع كائن Date
الذي يحتوي على الوقت الصحيح للحظة التي تم فيها استدعاء الدالة. على النقيض من getTime()
، التي ستعيد الوقت الصحيح للحظة حل الوعد.
يمكنك تمرير خيارات مخصصة إلى مُنشئ NtpTimeSync
أو NtpTimeSync.getInstance(options)
. سيتم دمجها مع الإعدادات الافتراضية التالية:
const defaultOptions = {
// list of NTP time servers, optionally including a port (defaults to 123)
servers : [
"0.pool.ntp.org" ,
"1.pool.ntp.org" ,
"2.pool.ntp.org" ,
"3.pool.ntp.org"
] ,
// required amount of valid samples in order to calculate the time
sampleCount : 8 ,
// amount of time in milliseconds to wait for a single NTP response
replyTimeout : 3000 ,
// defaults as of RFC5905
ntpDefaults : {
port : 123 ,
version : 4 ,
tolerance : 15e-6 ,
minPoll : 4 ,
maxPoll : 17 ,
maxDispersion : 16 ,
minDispersion : 0.005 ,
maxDistance : 1 ,
maxStratum : 16 ,
precision : - 18 ,
referenceDate : new Date ( "Jan 01 1900 GMT" )
}
} ;