Showing: 1 - 10 of 13 Articles

Monorepo Architecture: A Must-Have Skill for Software Engineers in 2026

Monorepo Architecture: A Must-Have Skill for Software Engineers in 2026 A few years ago, I thought multiple repositories were the cleanest way to organize projects. One repo per app, one repo per service, everything neatly separated. It felt organized — until it wasn’t. Then came …

Important Moment.js functions for JavaScript

Below are some very important functions that you will need while working with timestamp or date in JavaScript. // returns current timestamp const set_current_timestamp = function() { returnmoment().format(‘X’); }; // converts timestamp to date // pass timestamp in function const getDateFormatFromTimeStamp = function(dt) { returnmoment.unix(dt).format(‘MM/DD/YYYY’); }; …