system-datetime
v0.1.3
Published
A node.js package to manage the system's date and time
Downloads
3
Maintainers
Readme
SystemDatetime
ALERT: Setting methods require superuser permission. This package is not suitable for most applications.
How to use:
const systemdtz = require('system-datetime');
Datetime
Provides methods to get and set the system's date and time.
// Getting the date and time
systemdtz.datetime.get()
.then(datetime => {
// The date and time comes in a Date instance
datetime;
// Setting the date and time with a Date instance
return systemdtz.datetime.set(datetime);
})
.then(datetime => {
// The setting method also gets the date and time in a Date instance
});
Timezone
Provides methods to get and set the system's timezone.
// Getting the timezone
systemdtz.timezone.get()
.then(timezone => {
// The timezone comes as a string with a content like America/Recife
timezone;
// Setting the date and time with a string with content like America/Recife
return systemdtz.timezone.set(timezone);
})
.then(() => {
// The timezone setting method returns nothing
});