A file system that writes files to in-memory buffers.
Useful for generating output without writing to disk, such as when creating data for download or further processing.
const fs = new MemoryFileSystem();await writeFile({ filename: 'output.ply', ... }, fs);// Get the generated dataconst data = fs.results.get('output.ply'); Copy
const fs = new MemoryFileSystem();await writeFile({ filename: 'output.ply', ... }, fs);// Get the generated dataconst data = fs.results.get('output.ply');
A file system that writes files to in-memory buffers.
Useful for generating output without writing to disk, such as when creating data for download or further processing.
Example