Generate beautiful press kits in minutes. Static HTML, zero server required.
presskit.diy is a modern Node.js CLI tool for creating professional press kits. It supports both XML (for backward compatibility) and JSON/JSONC (for modern projects). Deploy anywhere — it's just static files.
Maintained by Saturno.Software, based on the legendary presskit.html by Pixelnest Studio.
npm install -g presskit-diy
# Create a new project
presskit-diy new company mycompany
cd mycompany/
# Build your press kit
presskit-diy build
# Open build/index.html in your browsernpm install presskit-diyconst { runBuildCommand } = require('presskit-diy');
runBuildCommand({
entryPoint: './data',
output: './build',
watch: false
});- Dual Format Support — Write in XML (legacy) or JSON/JSONC (modern)
- Image Optimization — Auto-generated thumbnails, ZIP archives
- Watch Mode — Live reload with BrowserSync
- Markdown Support — Rich text fields in JSON files
- Product Relations — DLC, sequel, and expansion links
- Customizable — Use your own CSS, override templates
- Cross-Platform — macOS, Linux, Windows support
- Secure — 100% static HTML, no server required
- Scaffolding — Generate templates instantly
- Zero Dependencies — Deploy anywhere (just HTML/CSS/JS)
npm install -g presskit-diy
presskit-diy --helpnpm install presskit-diy- Node.js 14+ (Download)
presskit-diy new company mycompany
presskit-diy new product myproduct
# Then edit the generated files
cd mycompany/
# Edit data.json, description.md, and images/# Build from XML (legacy format)
presskit-diy build
# Build from JSON (modern format)
# (automatic if data.json exists)
# Output: ./build/index.htmlpresskit-diy build --watch
# Optional: use dev mode (also watches CSS/templates)
presskit-diy build --watch --devpresskit-diy build --css ./my-custom-theme.css# Specify input and output directories
presskit-diy build ./data --output ./public
# Pretty URLs (remove .html extensions)
presskit-diy build --pretty-links
# Ignore missing images (don't warn)
presskit-diy build --ignore-missing-images
# Disable thumbnail generation (faster builds)
presskit-diy build --ignore-thumbnails
# See all options
presskit-diy --helppresskit-diy new company mycompany
cd mycompany/Your project structure:
mycompany/
├── data.json # Your company/product data
├── description.md # Markdown description
└── images/
├── logo.png
├── screenshot1.png
└── ...
data.json example:
{
"type": "company",
"title": "My Company",
"website": "https://example.com",
"description": "We make awesome stuff.",
"socials": [
{ "name": "Twitter", "url": "https://twitter.com/..." }
],
"features": [
{ "title": "Feature 1", "description": "Does something cool" }
]
}<?xml version="1.0" encoding="utf-8"?>
<company>
<title>My Company</title>
<website>https://example.com</website>
<description>We make awesome stuff.</description>
<social>
<name>Twitter</name>
<url>https://twitter.com/...</url>
</social>
</company>- Data Format Reference — Complete field documentation
- Migration Guide — Upgrading from presskit()
- Image Guidelines — Logo sizes, categories, etc.
- Examples — Real-world data.json samples
- Technical architecture details available in the repository source code
Contributions welcome! See CONTRIBUTING.md for:
- Development setup
- Code style guidelines
- Testing requirements
- Pull request process
MIT — See LICENSE for details.
Maintained by Saturno.Software
Based on presskit.html by Pixelnest Studio
Inspired by the original presskit() by Rami Ismail
Q: Can I use presskit.diy with my existing presskit() data?
A: Yes! Your data.xml and images/ folder will work. See the Migration Guide.
Q: Do I need a web server?
A: No. It generates static HTML files. Upload them anywhere (GitHub Pages, Netlify, your own host).
Q: Can I customize the design?
A: Yes. Provide your own CSS file with --css option. Or extend the templates.
Q: Does it support JSON and XML at the same time?
A: No, but you can have one per directory. If both exist, JSON takes priority.
Q: How do I deploy my press kit?
A: Upload the build/ folder to any web host. It's just static files.
Q: Is there a GUI/web interface?
A: Not yet. presskit.diy is command-line based. CLI simplifies deployment.
Made with ❤️ by Saturno.Software