0.1.3 • Published 6 years ago

system-datetime v0.1.3

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

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

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago