Maintained by Zakodium
Bruker converter

Parse and convert Bruker raw data.
Installation
npm install brukerconverter
Use as a module
Node.js
As brukerconverter could be used to convert bruker files from a zip file by
the use of fileListFromZip
from filelist-utils
package.
const { convertFileList } = require('brukerconverter');
const { fileListFromZip } = require('fileCollection-utils');
const { getZipped } = require('bruker-data-test');
const zipFileCollection = await getZipped();
const aspirin = zipFileCollection.find((entry) => entry.name === filename);
const fileCollection = await fileListFromZip(await aspirin.arrayBuffer());
const result = await convertFileList(fileCollection);
console.log(result);
It is possible to use the converter if you have a path of the bruker folder by
the use of fileListFromPath
from filelist-utils
package.
const { getCoffee } = require('bruker-data-test');
const { convertFileList } = require('brukerconverter');
const coffeeData = await getCoffee();
const result = await convertFileList(coffeeData);
console.log(result);
License
© 2025 Zakodium Sàrl. This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. CC BY-NC-SA 4.0
This package is based on MIT-licensed code that can be found here: https://doi.org/10.5281/zenodo.6359429