
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
react-time-format
Advanced tools
Component for React to render dates by using html element ,and simply do not need moment,only depend on React.Small and simple ,src code only 3kb(uncompressed).
Component for React to render dates by using html element ,and simply do not need moment,only depend on React.Small and simple ,src code only 3kb(uncompressed).
% npm install react-time-format --save-dev
import React from 'react'
import Time from 'react-time-format'
class MyComponent extends React.Component {
render() {
let celebrateDay = new Date('2016-10-05');
return (
<div>
<p>CelebrateDay is <Time value={celebrateDay} format="YYYY/MM/DD" /></p>
<p>Today is <Time value={Date.now()} format="YYYY-MM-DD" style={{color:'red'}} /></p>
</div>
)
}
}
<div>
<p>CelebrateDay is <span>2016/10/05</span></p>
<p>Today is <span style="color: red;">2016-10-05</span></p>
</div>
YYYY-MM-DD hh:mm:ss
Y: year
M: month
D: day
h: hour
H: hour
m: minute
s: second
FAQs
Component for React to render dates by using html element ,and simply do not need moment,only depend on React.Small and simple ,src code only 3kb(uncompressed).
We found that react-time-format 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.