Simple, Lightweight javascript date parser developed in TypeScript
This repository has been archived on 2024-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Daniel Legt 3b935ba99e * Changed keywords 2022-05-08 10:23:26 +03:00
dist . 2022-05-07 13:54:58 +03:00
src + A lot of distribution Work 2022-05-07 15:04:19 +03:00
.gitignore + A lot of distribution Work 2022-05-07 15:04:19 +03:00
.npmignore + A lot of distribution Work 2022-05-07 15:04:19 +03:00
CONTRIBUTING.md + A lot of distribution Work 2022-05-07 15:04:19 +03:00
README.md + Readme Images 2022-05-07 15:34:40 +03:00
jestconfig.json + A lot of distribution Work 2022-05-07 15:04:19 +03:00
license + License 2022-05-06 00:48:33 +03:00
package-lock.json + A lot of distribution Work 2022-05-07 15:04:19 +03:00
package.json * Changed keywords 2022-05-08 10:23:26 +03:00
tsconfig.json + A lot of distribution Work 2022-05-07 15:04:19 +03:00

README.md

Tyme.js

Site | Docs/Wiki | Contributing |

Building the project yourself:

$ git pull https://github.com/JustKato/Tyme.js tymejs
$ cd tymejs
$ npm run build

Download

Web Download NPM Download

Tyme.js is released under the MIT license & supports modern environments.

Installation

In a browser:

<script src="tyme.js"></script>

Using npm:

$ npm i tymejs

In Node.js TypeScript:

// Import the Package
import TymeJS from "tymejs"; // Use require for plain javascript

// Get the date object from Somewhere
let myDate: Date = new Date();

// Initialize the TymeJS Object
let t: TymeJS = new TymeJS(myDate);

// Now you can format different dates
let formattedDate: string = t.format("d/m/Y H:i A");

// Log the formatted Date
console.log(formattedDate);

In Node.js using JavaScript:

const { default: TymeJS } = require("tymejs");

// Get the date object from Somewhere
let myDate = new Date();

// Initialize the TymeJS Object
let t = new TymeJS(myDate);

// Now you can format different dates
let formattedDate = t.format("d/m/Y H:i A");

// Log the formatted Date
console.log(formattedDate);

Why TymeJS?

TymeJS makes working with JavaScript date objects much easier, I've found myself
multiple times in the situation where the client doesn't like their region's date format and requests for custom formats, this consumed a lot of time implementing, so that's why I have created this library, for:

  • Reliable Date formats
  • Reliable Time formats
  • TypeScript Support