
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.
astro-humans
Advanced tools
Standards‑friendly humans.txt generation for Astro sites
astro-humans is a static‑first Astro integration that generates a clean, human‑readable
humans.txt file at build time.
It exists for one reason:
The internet is for humans.
This file documents the people and tools behind a website.
No runtime JavaScript.
No tracking.
No build coupling.
No opinionated enforcement.
On astro build, the plugin:
humans.config.json file exists (first run only)config-files/humans.txt/humans.txt (canonical)/.well-known/humans.txt (optional)If configuration is invalid or disabled, no file is written.
npm install astro-humans
Add the integration to your Astro config:
import { defineConfig } from "astro/config";
import astroHumans from "astro-humans";
export default defineConfig({
integrations: [
astroHumans()
]
});
On first run, the plugin ensures this file exists:
config-files/humans.config.json
If a legacy file exists at:
/humans.config.json
It will be moved automatically to:
/config-files/humans.config.json
This happens once and never overwrites existing files.
{
"enabled": true,
"output": {
"wellKnown": false,
"root": true
},
"humans": {
"team": [
{
"name": "Your Name",
"role": "Developer",
"contact": "https://example.com"
}
],
"site": {
"name": "Example Website",
"url": "https://example.com",
"language": "en",
"lastUpdated": "2026-01-01"
},
"technology": [
"Astro",
"TypeScript",
"HTML",
"CSS"
],
"notes": [
"Built with care.",
"The internet is for humans."
]
}
}
/* TEAM */
Name: Your Name
Role: Developer
Contact: https://example.com
/* SITE */
Name: Example Website
URL: https://example.com
Language: en
Last Updated: 2026-01-01
/* TECHNOLOGY */
Astro
TypeScript
HTML
CSS
/* NOTES */
Built with care.
The internet is for humans.
All sections are optional and omitted if empty:
There is no required schema beyond basic safety.
This plugin is intentionally fail‑silent.
If any of the following occur:
enabled: false➡️ No humans.txt is written
Your build will continue normally.
It is a courtesy file — nothing more, nothing less.
MIT © Velohost UK Limited
Built and maintained by Velohost UK Limited https://velohost.co.uk/
Project homepage:
https://velohost.co.uk/plugins/astro-humans/
FAQs
Deterministic humans.txt generation for Astro sites at build time
We found that astro-humans demonstrated a healthy version release cadence and project activity because the last version was released less than 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.