
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
Celsus is a next-generation documentation framework built for developers who value speed, automation, and flexibility. It eliminates repetitive setup tasks, allowing teams to focus on writing, not configuring.
With built-in CLI tools, instant preview servers, and seamless deployment integrations, Celsus makes managing docs for any project effortless.
celsus create, celsus build, celsus deploy, celsus console.Install Celsus globally using npm or yarn:
# Using npm
npm install -g celsus
# Using yarn
yarn global add celsus
celsus create my-docs
cd my-docs
npm start
The local dev server automatically finds a free port (default: 3000) and launches instantly.
celsus build
Your site will be compiled into a static bundle optimized for performance.
celsus deploy
Supports GitHub Pages, Cloudflare Pages, Netlify, and Vercel.
You can customize your setup by creating a celsus.config.js file:
export default {
title: "Celsus Documentation",
description: "Next-gen documentation framework",
theme: "modern",
port: 3000,
favicon: "./public/favicon.ico",
plugins: ["search", "analytics", "sitemap"],
baseURL: "https://yourdomain.com/docs",
};
my-docs/
├── public/
│ ├── favicon.ico
│ └── assets/
├── src/
│ ├── pages/
│ ├── components/
│ └── main.js
├── celsus.config.js
└── package.json
| Command | Description |
|---|---|
celsus create <name> | Create a new documentation project |
celsus dev | Start local dev server with hot reload |
celsus build | Build production-ready site |
celsus deploy | Deploy site to chosen platform |
celsus console | Access the internal CLI console |
celsus demo | Generate sample documentation project |
Plugins allow you to extend Celsus with extra capabilities.
Example plugin config:
plugins: [
"search",
["analytics", { provider: "Google", id: "UA-123456" }],
["sitemap", { priority: 0.8 }]
]
Available plugins:
search — Adds in-site searchanalytics — Adds Google/Cloudflare Analyticssitemap — Auto-generates sitemap.xmlThemes are located under src/theme/.
To create a custom theme:
celsus theme create my-theme
Then edit your configuration:
theme: "my-theme"
Celsus supports light/dark modes, typography customization, and accent colors.
gh-pages branchnetlify-cli| Problem | Solution |
|---|---|
| Port already in use | Celsus auto-selects a new port |
| Build fails | Delete .cache folder and rebuild |
| CLI not found | Ensure Node.js ≥16 and reinstall globally |
| Theme not loading | Check celsus.config.js theme path |
We welcome contributions!
feature/my-feature)Run the dev build before submitting:
npm run dev
Celsus is licensed under the MIT License — free for personal and commercial use.
Developed with ❤️ by CK Web Gaming
GitHub: @CKWebGaming
Special thanks to open-source tools and contributors who made Celsus possible:
FAQs
Celsus — Universal Web Development Runtime Tool
We found that celsus 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.