
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.
docspresso
Advanced tools
Docspresso is an open-source documentation framework that simplifies the creation of customizable and structured documentation for your projects.
Docspresso is an open-source documentation framework that simplifies the creation of customizable and structured documentation for your projects.
npm install docspresso
# or
yarn add docspresso
Paste the following code in your mainContent.tsx/.jsx file inside page directory:
import { generateDocs, MainField, SubField } from 'docspresso';
const mainFields: MainField[] = [
{
title: 'Guide',
subFields: [
{
title: 'Installation',
renderContent: (className?: string) => <div className={className}>Content 1</div>,
className: 'custom-class-1'
},
{
title: 'Usage',
renderContent: (className?: string) => <div className={className}>Content 2</div>,
className: 'custom-class-2'
},
],
},
];
const mainContent = generateDocs(mainFields);
export default mainContent;
Paste this code in your page.tsx or page.jsx file in documentation directory:
'use client'
import mainContent from "../docs/mainContent";
import { useState } from "react";
export default function DocsPage() {
// const router = useRouter();
const [expandedMainField, setExpandedMainField] = useState<number | null>(null);
const [selectedSubField, setSelectedSubField] = useState<number | null>(null);
const toggleMainField = (mainIndex: number) => {
if (expandedMainField === mainIndex) {
setExpandedMainField(null); // Collapse if clicking on the same expanded mainField
} else {
setExpandedMainField(mainIndex); // Expand if clicking on a different mainField
setSelectedSubField(null); // Reset selectedSubField when expanding a new mainField
}
};
const handleSubFieldClick = (subIndex: number) => {
setSelectedSubField(subIndex);
};
return (
<div className="w-screen mx-40 flex">
{/* Sidebar with Fixed Position */}
<div className="h-screen w-[20%] sticky top-0 left-0 py-3 bg-white space-y-10">
<ul>
{mainContent.map((mainField, mainIndex) => (
<li key={mainIndex} className="pb-2">
<h2
onClick={() => toggleMainField(mainIndex)}
className={`font-semibold text-lg pb-2 cursor-pointer ${
expandedMainField === mainIndex ? 'text-blue-500' : ''
}`}
>
{mainField.title}
</h2>
{expandedMainField === mainIndex && (
<ul>
{mainField.subFields.map((subField, subIndex) => (
<li key={subIndex} className="ml-8 py-1 list-disc">
<h3
onClick={() => handleSubFieldClick(subIndex)}
className={`cursor-pointer ${
selectedSubField === subIndex ? 'text-blue-500' : ''
}`}
>
{subField.title}
</h3>
</li>
))}
</ul>
)}
</li>
))}
</ul>
</div>
{/* Main Content Area */}
<div className="w-[80%] mr-12">
{expandedMainField !== null && selectedSubField !== null && (
<div className={mainContent[expandedMainField].subFields[selectedSubField].className}>
{mainContent[expandedMainField].subFields[selectedSubField].renderContent()}
</div>
)}
</div>
</div>
);
}
npm run dev
Explore the example folder for a complete example of using Docspresso in a Next.js project.
Contributions are welcome! Please fork the repository and submit a pull request for any improvements or bug fixes.
If you find Docspresso helpful, consider supporting me on Patreon to help sustain its development.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
Docspresso is an open-source documentation framework that simplifies the creation of customizable and structured documentation for your projects.
We found that docspresso demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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.