basic-doc
v1.0.0A dependency-free page explaining what a Nex recipe is and how it works
xnex install basic-doc GitHub repo basic-doc
A dependency-free onboarding recipe. Installs a single static page explaining what a Nex recipe is — no framework, no build step, no runtime dependency. Read it, delete it when you're done with it.
What this recipe gives you
recipe-anatomy/
├─ index.html
├─ styles.css
└─ script.js
Three plain files. Open index.html directly in a browser, or drop
the folder anywhere in your project — there's nothing to install,
compile, or configure.
Why it exists
Nex doesn't have a recipe for every stack yet. This one exists so that
any developer, regardless of what they're building, can try the
Recipe experience once and understand the model before reaching for a
real recipe (nestjs-basic-auth, astro-cards, etc).
What's inside the page
- Nədir, nə deyil — what a recipe is and isn't, in plain terms
- Recipe anatomy diagram — a labeled breakdown of
nexconfig.json:files→setup.files→setup.scripts→setup.variants - A real install walkthrough — the
nestjs-basic-authrecipe, fromxnex installto the applied file tree - Versioning & integrity — how publish hashing and immutable releases work
No setup.scripts, no setup.variants — this recipe is intentionally
the simplest possible shape a nexconfig.json can take, so it also
doubles as a minimal reference config.
Removing it
There's no uninstall step to run. Delete the recipe-anatomy/ folder
and the recipes/basic-doc/ folder, and your project is back to
exactly how it was before.
Versions
Release links are tracked by Nex; source code lives in the developer's GitHub repo.
setup.files
Files that will be integrated into your project
- recipes
- basic-doc
- README.md → recipes/basic-doc
-
-
- index.html → recipe-anatomy
- script.js → recipe-anatomy
- styles.css → recipe-anatomy
nexconfig
Full recipe configuration
{
"name": "basic-doc",
"version": "1.0.0",
"description": "A dependency-free page explaining what a Nex recipe is and how it works",
"keywords": [
"docs",
"onboarding",
"recipe",
"static"
],
"files": [
"index.html",
"styles.css",
"script.js",
"recipes/basic-doc/README.md"
],
"setup": {
"files": {
"index.html": "recipe-anatomy",
"styles.css": "recipe-anatomy",
"script.js": "recipe-anatomy",
"recipes/basic-doc/README.md": "recipes/basic-doc"
}
}
}
You might also be interested in these
nestjs-basic-auth
NESTJS BASIC AUTH RECIPE
astro-cards
A collection of beautifully designed, standalone UI kit card components for Astro
nestjs
NESTJS EMPTY TEMPLATE
nestjs-logging
NESTJS REQUEST LOGGING MIDDLEWARE RECIPE
fastapi-exceptions
Global exception handling module and demo error endpoints for FastAPI recipes.