Moment.js

Parse, validate, manipulate, and display dates in JavaScript with a chainable API.

Library
npm
v2.30.1
47,914stars
MIT License

Repository Health

Pre-computed score based on development activity, maintenance, community, maturity, and trend momentum.How we score it →
88/100Excellent
Development Activity96
Maintenance72
Community84
Maturity60
Momentum40

Technical Analysis

AI-assessed by reading the actual repository — architecture, code quality, innovation, and documentation.How we score it →
69/100Good
Architecture68
Code Quality72
Innovation55
Learning Curve80

Moment.js is a battle-tested JavaScript library for parsing, validating, manipulating, and formatting dates and times. It normalizes ISO 8601 strings, RFC 2822 strings, arrays, plain objects, and native Date instances into a single chainable Moment object, then exposes getters, setters, arithmetic (add/subtract/diff), and locale-aware formatting through one consistent API.

Originally released in 2011, Moment became the de facto standard for date handling in the JavaScript ecosystem for nearly a decade, and ships with 137 bundled locale files for out-of-the-box internationalized output. The project is now in maintenance mode — the maintainers explicitly recommend newer, immutable, tree-shakeable alternatives for new projects — but Moment remains widely deployed in legacy codebases and is still the most immediately recognizable name in JS date handling.

What You Get

  • A single moment() factory that parses ISO 8601, RFC 2822, arrays, plain objects, or custom format strings into one consistent Moment instance
  • A chainable API for arithmetic and queries — .add(), .subtract(), .diff(), .startOf(), .isBefore(), .isSame() — that all compose on the same object
  • 137 bundled locale files for out-of-the-box internationalized month names, weekday names, and relative-time phrasing
  • Flexible, token-based formatting and parsing (.format(‘YYYY-MM-DD’), custom token strings) with strict-mode parsing for validation
  • Duration support (moment.duration()) for representing and formatting spans of time independent of a fixed calendar date
  • UMD packaging that works via CommonJS require, AMD, or a plain <script> global, plus hand-maintained TypeScript typings

Common Use Cases

  • Formatting and displaying dates in a user’s locale in legacy server-rendered or jQuery-era frontends
  • Parsing loosely-formatted date strings from forms, CSV imports, or third-party APIs into a validated Date
  • Computing relative time (‘3 hours ago’) and human-readable durations for activity feeds and timestamps
  • Date arithmetic in Node.js backends — adding business days, computing age, or generating date ranges for reports
  • Maintaining and extending older codebases that already depend on Moment where a migration to a newer library isn’t yet planned

Under The Hood

Architecture

Moment wraps the native JavaScript Date object behind a single moment() factory function exported from src/lib/moment/moment.js, with construction logic split across src/lib/create/ (from-string.js, from-array.js, from-string-and-format.js, from-object.js) that normalizes any input — ISO strings, RFC 2822 strings, arrays, plain objects, other Moment instances, or a format string — into an internal _d Date plus a set of parsing-flag diagnostics from parsing-flags.js. Once constructed, a Moment instance exposes a large chainable prototype (src/lib/moment/prototype.js) whose getters/setters (src/lib/units/*.js, one file per unit: year.js, month.js, day-of-month.js, etc.) read and write through a shared set-tokens helper so operations like .add(), .subtract(), .startOf(), and .diff() all funnel through the same duration and unit-offset primitives in src/lib/duration/. Formatting output runs the inverse of parsing: src/lib/format/format.js tokenizes a format string once and caches the token array, then src/lib/locale/ (137 locale files) supplies the token-to-string tables consumed at format time, giving locale-aware output without touching Intl.

Tech Stack

The library ships as hand-written, dependency-free ES5-compatible JavaScript (package.json has zero runtime dependencies) authored in an ES module style under src/ and built to a single UMD bundle (moment.js at the repo root, dist/moment.js) via a Grunt + Rollup pipeline (Gruntfile.js, grunt-contrib-concat/uglify tasks) so it can be required from CommonJS, loaded via AMD, or dropped in as a global <script> tag. TypeScript typings are maintained by hand in moment.d.ts and mirrored for older TypeScript versions under ts3.1-typings/, rather than generated from source. Dev tooling is ESLint (eslint:recommended, ES6 module parsing) plus Prettier for formatting, and the test/build scripts are orchestrated entirely through Grunt rather than a modern bundler like Vite or esbuild — a reflection of the project’s age (created 2011).

Code Quality

Test coverage is substantial: 193 files under src/test/ (split into src/test/moment/, src/test/locale/, and src/test/helpers/) run on QUnit via Karma across multiple browser launchers (Chrome, Firefox, Sauce Labs), covering both core API behavior and per-locale formatting edge cases. Source files are small and single-purpose (e.g. src/lib/create/from-string-and-format.js at ~140 lines handles only ISO/RFC2822/custom-format parsing dispatch), which keeps individual units easy to reason about even though the overall API surface is large. Naming is consistent and low-abstraction (plain function exports, no classes), matching the codebase’s 2011-era JavaScript style, and ESLint’s eslint:recommended ruleset is enforced in CI. The main caveat found in the README itself: the project is explicitly in maintenance mode (‘Moment.js is a legacy project… In most cases, you should choose a different library’), so code quality is stable but not actively hardened against new edge cases.

API Design

Moment’s signature strength is a fluent, chainable API — moment().add(1, ‘day’).format(‘YYYY-MM-DD’) — that made it the default JS date library for a decade, and that ergonomic pattern is still widely imitated by successor libraries. Getting started requires no configuration: import moment, call moment() or moment(‘2024-01-01’), and every mutation/query method returns a Moment or primitive without extra boilerplate. The cost is a large, sometimes overlapping method surface (multiple ways to parse the same input, mutable-by-default instances that trip up developers expecting immutability) and a mutable object model that the library’s own docs now steer newcomers away from in favor of immutable alternatives. Documentation at momentjs.com/docs is thorough and example-driven, and the maintainers’ ‘Project Status’ page is unusually candid about the library’s limitations and recommended alternatives.

Used by 63 apps in this directory

TypeScript
72%
AGPL 3.0

APITable

Low Code Platforms · Databases

15,526

API-first collaborative spreadsheet-database platform that auto-generates REST APIs and lets teams build internal tools, CRMs, and dashboards without code.

View details
53
Repo Health
77
Technical
60
Dependency
Built with
TypeScript72%
Java22%
Updated 9 months ago
Other

Akaunting

Invoicing Finance

10,070

Open-source online accounting for small businesses and freelancers — invoices, expenses, and reporting without monthly fees or vendor lock-in.

View details
98
Repo Health
73
Technical
63
Dependency
Updated yesterday
JavaScript
95%
MIT

AnythingLLM

Developer Tools · Automation · AI Assistants

64,914

The all-in-one AI platform for private document chat, no-code agents, and local LLMs with zero setup friction.

View details
91
Repo Health
78
Technical
68
Dependency
Built with
JavaScript95%
Updated today
TypeScript
66%
Apache 2.0

Appsmith

Developer Tools · Automation · No Code Platforms

40,707

Open-source low-code platform to build admin panels, dashboards, and internal tools connected to any database or API.

View details
94
Repo Health
79
Technical
68
Dependency
Built with
TypeScript66%
Java22%
Updated today
Go
85%
Apache 2.0

Argo Workflows

Devops · Data Engineering

16,916

The most popular Kubernetes-native workflow engine for orchestrating containerized DAGs, ML pipelines, CI/CD, and parallel batch jobs at scale.

View details
96
Repo Health
90
Technical
70
Dependency
Built with
Go85%
TypeScript11%
Updated today
TypeScript
49%
MPL 2.0

Artillery

Devops · Developer Tools

9,054

Cloud-scale load testing and functional testing for APIs, WebSockets, gRPC, and headless browsers, distributed across AWS Lambda or Fargate with zero infrastructure to manage.

View details
89
Repo Health
73
Technical
68
Dependency
Built with
TypeScript49%
JavaScript48%
Updated 5 days ago
Python
68%
Other

Baserow

No Code Platforms · Databases

5,635

Open-source no-code platform to build databases, apps, automations, and AI agents — self-hosted or cloud, with full data ownership.

View details
89
Repo Health
84
Technical
68
Dependency
Built with
Python68%
JavaScript15%
Vue12%
Updated today
TypeScript
97%
AGPL 3.0

Bigcapital

Invoicing Finance

3,846

Self-hostable double-entry accounting platform with invoicing, inventory, multi-currency, and real-time financial reporting for small and medium businesses.

View details
91
Repo Health
77
Technical
64
Dependency
Built with
TypeScript97%
Updated yesterday
TypeScript
55%
Other

Cap

Team Chat · Video Conferencing

20,986

Open source Loom alternative with GPU-accelerated recording, instant share links, AI summaries, and full self-hosting via Docker Compose.

View details
89
Repo Health
81
Technical
65
Dependency
Built with
TypeScript55%
Rust40%
Updated yesterday

Join founders buildingwith open source

Opinionated takes, migration guides, cost-saving tips, and insights from the open source ecosystem.

Subscribe on Substack
Join 750+ subscribers

Search