
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
@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.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.