
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
This tool counts differences between dates
npm i count-age
import { countAge } from "count-age";
const myAge = countAge('2000-01-01T09:30:00.000Z');
Function can be provided by one input date or two.
Input dates can be string for date creation, timestamp number, or instance of next object:
type DateProps = {
years: number;
months: number;
days: number;
hours?: number;
minutes?: number;
seconds?: number;
};
This function anyway returns object with status and message.
enum STATUS {
SUCCESS = 'SUCCESS',
ERROR = 'ERROR',
}
// error messages
enum MESSAGE {
invalid = 'Invalid Date',
startBiggerEnd = 'Start date is bigger than end date',
}
// success message
type templeteSuccessMessage = '{{ count }} year(s), {{ count }} month(s), {{ count }} day(s), {{ count }} hour(s), {{ count }} minute(s), {{ count }} second(s) have passed between dates: {{ date-start }} - {{ date-end }}'
Success result object also contains field result:
type result = {
difference: {
years: number;
months: number;
days: number;
hours: number;
minutes: number;
seconds: number;
};
startDate: string;
endDate: string;
}
FAQs
This tool counts differences between dates
The npm package count-age receives a total of 6 weekly downloads. As such, count-age popularity was classified as not popular.
We found that count-age demonstrated a not healthy version release cadence and project activity because the last version was released 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

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.