./nugetz
pkg

sailohith.dhanakonda/MomentDotNetv1.0.2

docs d<> code .compare c
.NET 5.0

A Moment.js-style DateTime helper for .NET

License

Deps

0

Install Size

Vulns

✓ 0

Published

Jul 21, 2025

Get Started

$ dotnet add package MomentDotNet

Readme

MomentDotNet

A lightweight DateTime utility library for .NET, inspired by Moment.js.

Features

  • Format and parse dates using locale
  • Supports multiple cultures like en-US, fr-FR, hi-IN
  • 🗓Time manipulation (Add/Subtract)
  • Friendly time: 2 days ago, just now

Example Usage

using MomentDotNet; var date = DateTime.Now; Console.WriteLine(date.Format("dddd, dd MMMM yyyy", "fr-FR")); // "samedi, 29 juin 2025" Console.WriteLine("2025-06-29".Parse("yyyy-MM-dd").FromNow());