This package helps nodejs iExec dapps to deserialize protected data created with @iexec/dataprotector
npm install @iexec/dataprotector-deserializer
In your nodejs iExec dapp
import { IExecDataProtectorDeserializer } from '@iexec/dataprotector-deserializer';
const deserializer = new IExecDataProtectorDeserializer();
const value1 = await deserializer.getValue('path.to.value1', 'bool');
const value2 = await deserializer.getValue('path.to.value2', 'string');