
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.
@aashari/nodejs-confluence-export
Advanced tools
CLI tool to export Confluence pages by space with flexible filtering options.
A powerful Node.js/TypeScript command-line tool for exporting Confluence pages with advanced filtering capabilities, preserving page relationships and content formatting.
This CLI tool enables you to export entire Confluence spaces to your local filesystem while maintaining hierarchical structure and page relationships. It converts Confluence's complex storage format into clean Markdown or HTML files with proper formatting for macros, tables, code blocks, and other Confluence elements.
confluence-export-cli).Set these environment variables:
export ATLASSIAN_SITE_NAME="yourcompany" # For yourcompany.atlassian.net
export ATLASSIAN_USER_EMAIL="your.email@example.com"
export ATLASSIAN_API_TOKEN="your-api-token"
Create a .env file in your project directory:
ATLASSIAN_SITE_NAME=yourcompany
ATLASSIAN_USER_EMAIL=your.email@example.com
ATLASSIAN_API_TOKEN=your-api-token
npxExport a space to the default output directory (./output):
npx -y @aashari/nodejs-confluence-export export --space SPACEKEY
Using inline environment variables:
ATLASSIAN_SITE_NAME=yourcompany ATLASSIAN_USER_EMAIL=your.email@example.com ATLASSIAN_API_TOKEN=your-api-token npx -y @aashari/nodejs-confluence-export export --space SPACEKEY
npm install -g @aashari/nodejs-confluence-export
Then run directly:
confluence-export export --space SPACEKEY
npx -y @aashari/nodejs-confluence-export export --space SPACEKEY --output-dir ./my-exports
npx -y @aashari/nodejs-confluence-export export --space SPACEKEY --format html
Exclude a specific page and all its children:
npx -y @aashari/nodejs-confluence-export export --space SPACEKEY --ignore parent:12345678
Exclude pages matching a title pattern:
npx -y @aashari/nodejs-confluence-export export --space SPACEKEY --ignore title:DRAFT
Use multiple filters:
npx -y @aashari/nodejs-confluence-export export --space SPACEKEY --ignore parent:12345678 --ignore title:"Internal Only"
confluence-export export [options] Export Confluence pages from a specified space
-s, --space <spaceKey>: (Required) The key of the Confluence space to export-o, --output-dir <path>: Directory to save exported files (default: ./output)-f, --format <format>: Export format - markdown or html (default: markdown)--ignore <filter...>: Pages to ignore. Format: "parent:ID" to ignore a page and all children, or "title:REGEX" to ignore pages matching regex pattern. Can be used multiple times.The exported content will be organized as follows:
output/
├── space-name/
│ ├── page-title-1/
│ │ ├── child-page-1.md
│ │ └── child-page-2.md
│ ├── page-title-2/
│ │ └── ...
│ └── ...
└── ...
Each Markdown/HTML file includes:
If you encounter issues with the export:
DEBUG=true environment variable for detailed logs:DEBUG=true npx -y @aashari/nodejs-confluence-export export --space SPACEKEY
npm run buildnpm testnpm run formatnpm run lintISC
FAQs
CLI tool to export Confluence pages by space with flexible filtering options.
The npm package @aashari/nodejs-confluence-export receives a total of 6 weekly downloads. As such, @aashari/nodejs-confluence-export popularity was classified as not popular.
We found that @aashari/nodejs-confluence-export 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.