mkspiffs-wrapper
is a Node.js wrapper for mkspiffs
, a tool used to create and manage SPIFFS filesystems. This package allows you to pack and unpack SPIFFS files from within a Node.js environment.
To install the package, use npm:
npm install mkspiffs-wrapper
Usage Importing the Package In your TypeScript file, import the Mkspiffs class:
import Mkspiffs from 'mkspiffs-wrapper';
Creating an Instance Create an instance of Mkspiffs:
const mkspiffs = new Mkspiffs();
Packing Files To pack files into a SPIFFS file, use the pack method:
mkspiffs.pack('path/to/sourceDir', 'path/to/output.spiff', {
blockSize: 4096,
pageSize: 256,
spiffSize: 0x20000 // Size in bytes
}, (err: Error | null, output: string | null) => {
if (err) {
console.error('Error packing files:', err);
} else {
console.log('Pack output:', output);
}
});
Unpacking Files To unpack a SPIFFS file, use the unpack method:
mkspiffs.unpack('path/to/input.spiff', 'path/to/outputDir', (err: Error | null, output: string | null) => {
if (err) {
console.error('Error unpacking files:', err);
} else {
console.log('Unpack output:', output);
}
});
This package is written in TypeScript, and type definitions are included. You can use it directly in TypeScript projects for better type safety and autocompletion.
See the examples directory for usage examples in TypeScript.
If you'd like to contribute to this project, please fork the repository and create a pull request with your changes.
This project is licensed under the MIT License. See the LICENSE file for details.
Special thanks to the authors of mkspiffs for their tool and to the TypeScript community for their support.