system-datetime

0.1.3 • Public • Published

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
  });

Package Sidebar

Install

npm i system-datetime

Weekly Downloads

1

Version

0.1.3

License

MIT

Unpacked Size

7.63 kB

Total Files

8

Last publish

Collaborators

  • mateuspires