Socket
Book a DemoInstallSign in
Socket

nskeyedunarchiver-liveplayback

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

nskeyedunarchiver-liveplayback

A simple NSKeyedUnarchiver (implemented and tested only to work with data from the LivePlayback iOS App).

unpublished
latest
Source
npmnpm
Version
0.1.3
Version published
Maintainers
1
Created
Source

node-nskeyedunarchiver-liveplayback

A simple NSKeyedUnarchiver in Javascript, to unarchive iOS property lists. It is implemented and tested only to work with data from the LivePlayback iOS App.

Installation

    $ npm i @suterma/nskeyedunarchiver-liveplayback

Usage

This unarchiver processes property lists as provided e.g. by this bplist-parser

    import NSKeyedUnarchiver from "nskeyedunarchiver-liveplayback";
    const inputPropertyList ...; //as provided e.g. by bplist-parser
    var unarchivedObject = new NSKeyedUnarchiver().unarchive(inputPropertyList);
    console.log(unarchivedObject);

See demo.ts for a working example

Remarks / Limitations

This implementation has been specifically created for the above task, and is in no way a complete solution. Feel free to fork or suggest improvements.

  • No support for circular references.
  • The UID type is not implemented, the number type is used instead.
  • Only some of the NS-types are implemented at this time, and some specific classes for the task at hand are additionally provided.

Credits

Keywords

NSCoder, NSKeyedUnarchiver, LivePlayback

FAQs

Package last updated on 15 Apr 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts