
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
date-utils-lib
Advanced tools
A simple date utility library for formatting, validating, and manipulating dates.
https://www.npmjs.com/package/date-utils-lib
date-utils-lib is a simple utility library for formatting, validating, and manipulating dates in JavaScript/TypeScript projects.
npm install date-utils-lib
import { formatDate, isValidDate, addDays } from "date-utils-lib";
console.log(formatDate("2025-08-24", "YYYY-MM-DD", "DD/MM/YYYY"));
// "24/08/2025"
console.log(isValidDate("2025-02-29", "YYYY-MM-DD"));
// false
console.log(addDays("2025-08-24", 7));
// "2025-08-31"
rratchapol
https://github.com/rratchapol/date-utils-lib.git
date-utils-lib คือไลบรารีสำหรับจัดการวันที่ใน JavaScript/TypeScript ใช้งานง่าย ครอบคลุมทั้งการแปลงรูปแบบวันที่ ตรวจสอบความถูกต้อง และบวกวัน
npm install date-utils-lib
import { formatDate, isValidDate, addDays } from "date-utils-lib";
console.log(formatDate("2025-08-24", "YYYY-MM-DD", "DD/MM/YYYY"));
// "24/08/2025"
console.log(isValidDate("2025-02-29", "YYYY-MM-DD"));
// false (29 ก.พ. 2025 ไม่มีจริง)
console.log(addDays("2025-08-24", 7));
// "2025-08-31"
date-utils-lib/
├─ src/
│ ├─ index.ts
│ ├─ formatDate.ts
│ ├─ validateDate.ts
│ ├─ addDays.ts
├─ package.json
├─ tsconfig.json
├─ README.md
├─ .gitignore
FAQs
A simple date utility library for formatting, validating, and manipulating dates.
We found that date-utils-lib demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.