
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 package contains helper functions for creating your Read.cv site or template.
The combineCollections helper function is provided by default via the readcv library. Use it to combine multiple collections into a single array, sorted chronologically. You will see combineCollections imported by default in Global imports.
import { combineCollections } from 'readcv';
A common use case would be wanting to display your projects and side projects in a single list.
// a simple component that combines projects and side projects
function AllProjects(props) {
let allProjects = combineCollections(cv.projects, cv.sideProjects);
return (
<ul>
{allProjects.map((project, index) => {
return (
<li>{project.title}</li>
)
})}
</ul>
)
}
The RichText component is provided by default via the readcv library. Use the RichText component wherever you need to render a string as rich text. You will see RichText imported by default in Global imports.
import { RichText } from 'readcv';
A common example would be the description field of an experience, or the about field on profiles.
// a simple component that displays a user's about section
import { RichText } from 'readcv';
function About(props) {
return (
<RichText text={cv.general.about}/>
)
}
FAQs
This package contains helper functions for creating your Read.cv site or template.
The npm package readcv receives a total of 2 weekly downloads. As such, readcv popularity was classified as not popular.
We found that readcv 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.