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

applicant-profile-protocol

v1.0.1

Published

Applicant Profile Protocol (APP) - An open, JSON-based protocol for structured applicant profiles with validation and export tools

Readme

Applicant Profile Protocol (APP)

This repository contains the draft specification, JSON Schema, and examples for the Applicant Profile Protocol (APP).

Contents

  • SPEC.md: Full protocol specification (draft)
  • schema/app.schema.json: JSON Schema (v1) for validating APP profiles
  • examples/minimal.json: Minimal valid APP profile
  • examples/full.json: Full featured example with semantic and evidence layers
  • docs/mappings/: Export mapping guides for JSON Resume, Europass, HR-XML
  • docs/semantic/json-ld.md: Guidance for the optional JSON-LD semantic layer
  • src/: Validator and exporters (Node.js)
  • public/tools/: Online tools for creating, validating, and converting profiles

Validate an APP Profile

You can validate APP JSON using common validators.

Node.js (Ajv)

npm init -y
npm install ajv@8 ajv-formats
node -e "const Ajv=require('ajv');const addFormats=require('ajv-formats');const fs=require('fs');const schema=JSON.parse(fs.readFileSync('schema/app.schema.json'));const data=JSON.parse(fs.readFileSync('examples/full.json'));const ajv=new Ajv({allErrors:true});addFormats(ajv);const validate=ajv.compile(schema);console.log(validate(data)?'valid':'invalid',validate.errors||'');"

Python (jsonschema)

pip install jsonschema
python - << 'PY'
import json
from jsonschema import validate, Draft202012Validator
schema = json.load(open('schema/app.schema.json'))
instance = json.load(open('examples/full.json'))
Draft202012Validator.check_schema(schema)
validate(instance=instance, schema=schema)
print('valid')
PY

Online Tools

Use the browser-based tools at app-protocol.org — no installation required:

  • Profile Builder — Create APP profiles using an intuitive form interface. Saves drafts to localStorage.
  • Validator — Validate your APP JSON against the official schema with detailed error messages.
  • Converter — Export APP profiles to JSON Resume, Europass XML, HR-XML, or JSON-LD.
  • Importer — Import existing profiles from JSON Resume, Europass, HR-XML, or LinkedIn formats.

CLI Usage (Node)

Install dependencies and run the CLI:

npm install
npx app validate examples/full.json
npx app export:jsonresume examples/full.json > dist/full.jsonresume.json
npx app export:europass examples/full.json > dist/full.europass.xml
npx app export:hrxml examples/full.json > dist/full.hrxml.xml

Or via npm scripts:

npm run validate
npm run export:jsonresume
npm run export:europass
npm run export:hrxml
npm run export:jsonld

Exporters (Planned)

Guides and mappers to export APP → other formats:

  • JSON Resume (implemented)
  • Europass XML (minimal subset implemented)
  • HR-XML (minimal subset implemented)
  • ATS-specific payloads (planned)
  • JSON-LD overlay (implemented)

Versioning

  • Protocol uses Semantic Versioning.
  • See SPEC.md for versioning policy.

Governance (Draft)

Open specification, community proposals, and backward compatibility encouraged.