
Security News
White House Authorizes Private Companies to Conduct Offensive Cyber Operations
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.
@nsea/xmind-handler
Advanced tools
A powerful Node.js library for processing XMind files, allowing you to filter, convert, and output XMind content in various formats.
A powerful Node.js library for processing XMind files, allowing you to filter, convert, and output XMind content in various formats.
Install the package using npm:
npm install @nsea/xmind-handler
Or using yarn:
yarn add @nsea/xmind-handler
You can use the CLI to process XMind files:
xmind -i input.xmind -o output -t json,md,xmind -m priority-1,important
Options:
-i, --input <filePath>: Input XMind file path (required)-o, --output-dir <dir>: Output directory (default: current directory)-t, --output-types <types>: Output types (comma-separated, default: xmind)-m, --filter-markers <markers>: Filter markers (comma-separated, default: priority-1)You can also use the library in your Node.js projects:
import processXMind from '@nsea/xmind-handler';
const options = {
inputFile: 'path/to/input.xmind',
outputTypes: ['json', 'md', 'xmind'],
outputDir: 'path/to/output',
filterMarkers: ['priority-1', 'important']
};
processXMind(options)
.then(() => console.log('XMind processing complete'))
.catch(error => console.error('Error processing XMind:', error));
processXMind(options: XMindOptions): Promise<void>Process an XMind file based on the provided options.
inputFile: string - The path to the input XMind fileoutputTypes?: ('json' | 'md' | 'xmind')[] - The types of output to generate (default: ['xmind'])outputDir?: string - The directory to write output files to (default: '.')filterMarkers: string[] - An array of marker IDs to filter topics byThis project is licensed under the MIT License.
FAQs
A powerful Node.js library for processing XMind files, allowing you to filter, convert, and output XMind content in various formats.
We found that @nsea/xmind-handler demonstrated a not healthy version release cadence and project activity because the last version was released 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
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.