npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

semantic-cv

v0.8.0

Published

A schema.org‑first CV generator for developers.

Readme

Semantic-CV - a schema.org/Person based CV Generator

Semantic‑CV is a minimal, idiomatic convention for expressing CV data using the global standard schema.org/Person. It does not introduce a new schema. Instead, it applies existing fields consistently and adds only a few carefully chosen extensions.

The goal is a future‑proof, machine‑readable, deterministic CV format that can be rendered into clean, professional documents — without lock‑in, bloat, or proprietary structures.

Features

  • Analyze JSON‑LD CVs
  • Normalize CVs (sort experience, correct types, trim fields, enforce conventions)
  • Watch mode for continuous validation
  • HTML rendering via templates
  • Minimal runtime dependencies
  • Deterministic, reproducible output

Roadmap

  • More HTML templates
  • Hosted rendering at https://semantic.cv

Installation

npm i -g semantic-cv

Usage

semantic-cv init
semantic-cv add <section>
semantic-cv set <name> <value>
semantic-cv analyze
semantic-cv watch
semantic-cv normalize
semantic-cv convert <filename|url>
semantic-cv render <theme>
semantic-cv help

Philosophy

Semantic‑CV is built on four principles:

Use global standards

  • No proprietary schemas
  • No reinvention

Be minimal

  • Only the fields needed to express CV data
  • No plugins, no extensions, no ecosystem sprawl
  • Minimal dependencies — only essential, stable libraries like semver or HTML rewriting primitives.

Be deterministic

  • Predictable, reproducible output
  • No hidden heuristics

Be semantically correct

  • Every field carries meaning beyond the CV
  • Data should remain valid outside the rendering context

Base Structure

A Semantic‑CV document is a JSON‑LD object shaped as a schema.org/Person:

{
  "@context": "https://schema.org",
  "@type": "Person",
  "...": "other Person fields"
}

Minimal Valid semantic-cv Example

{
  "@context": "https://schema.org",
  "@type": "Person",
  "name": "Henrik Becker",
  "jobTitle": "Software Engineer",
  "description": "Henrik Becker is an experienced .Net developer and solution architect dedicated to delivering quality software practicing Agile Processes, Test Driven Development, applying SOLID principles and a healthy dose of dad-jokes."
}

Getting started & adding content

Examples

# Prompts for basic info (name, job title, etc.) and creates cv.json
semantic-cv init

# Prompts for adding work experience entries
semantic-cv add worksFor

# Prompts for adding education entries
semantic-cv add alumniOf

# Sets a single value
semantic-cv set name Yoda

Analysing JSON‑LD CVs

One‑off analysis

semantic-cv analyze <filename>

Continuous analysis

semantic-cv watch <filename>

Both commands operate recursively on all JSON‑LD files in the current working directory when no filename is provided.

Normalization

semantic-cv normalize <filename>

The normalize command:

  • Sorts work experience, education, projects, certifications, and life events in descending chronological order
  • Converts single values to arrays (and arrays to single values) when the schema expects it
  • Trims surrounding whitespace from strings

Required fields

Schema.org is permissive, but a CV still needs a few core fields to be meaningful:

  • @context
  • @type
  • name
  • description
  • jobTitle

Everything else is optional.

Additional checks

The analyzer also checks for:

  • invalid URLs
  • missing or malformed fields
  • structural inconsistencies
  • unexpected types

Errors and warnings are printed directly to the console. Template authors should assume all fields are optional and implement appropriate null checks.

Rendering

semantic-cv render <theme> [filename=cv.json]

Renders your CV using the selected theme. If no filename is provided, cv.json in the current directory is used

Conventions by CV Area

Conventions for each CV area — including recommended fields, ordering rules, and semantic patterns — are documented in the dedicated reference: https://github.com/handiman/semantic-cv-docs/blob/master/conventions.md