From 6fa93c964861a33c3878d916533d66499427871f Mon Sep 17 00:00:00 2001 From: Arik Chakma Date: Fri, 3 May 2024 22:34:55 +0600 Subject: [PATCH] wip --- src/data/guides/introduction-to-luxon.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/data/guides/introduction-to-luxon.md diff --git a/src/data/guides/introduction-to-luxon.md b/src/data/guides/introduction-to-luxon.md new file mode 100644 index 000000000..10b311942 --- /dev/null +++ b/src/data/guides/introduction-to-luxon.md @@ -0,0 +1,24 @@ +--- +title: 'Introduction to Luxon' +description: 'What is Luxon, how does it work, and how to use it?' +authorId: 'arik' +seo: + title: 'Introduction to Luxon - roadmap.sh' + description: 'What are Luxon, how does it work, and how to use it?' +isNew: true +type: 'textual' +date: 2024-05-03 +sitemap: + priority: 0.7 + changefreq: 'weekly' +tags: + - 'guide' + - 'textual-guide' + - 'guide-sitemap' +--- + +Working with dates and times in JavaScript can be a pain. The built-in `Date` object is notoriously difficult to work with. This is where Luxon comes in. + +## What is Luxon? + +Luxon is a library for dealing with dates and times in JavaScript (Official Docs). It is developed by the team behind [Moment.js](https://moment.github.io/luxon/), another popular date and time library for JavaScript.