Hello,
README says node-apk can be imported as if it was ESM :
import { Apk } from 'node-apk';
But it's not, so this code throws the Named export 'Apk' not found error.
Therefore, it must be imported the following way from an ESM project :
import APK from 'node-apk';
const { Apk } = APK;
Or the following way from a CJS project :
const { Apk } = require('node-apk');
Please update the documentation accordingly.
Thanks