Latest Threat Research:Malicious dYdX Packages Published to npm and PyPI After Maintainer Compromise.Details
Socket
Book a DemoInstallSign in
Socket

keynote-parser2

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

keynote-parser2

A library for parsing Apple Keynote file

Source
npmnpm
Version
0.2.0
Version published
Weekly downloads
157
76.4%
Maintainers
1
Weekly downloads
 
Created
Source

keynote-parser2

github check npm license

A library for parsing Apple Keynote file.

Install

npm i keynote-parser2

Usage

Command Line

TODO

Node.js API

Parse keynote (.key) file:

import { parse } from 'keynote-parser2';

await parse(
  '/path/to/keynote_file.key',
  '/path/to/keynote_file_parsed_directory',
);

Parse IWA (.iwa) file:

import fs from 'node:fs/promises';
import { parseIwa } from 'keynote-parser2';

const data = await fs.readFile('/path/to/iwa_file.iwa');
const iwaData = await parseIwa(data);

Credits

License

MIT © meteorlxy & Contributors

Keywords

keynote

FAQs

Package last updated on 21 Feb 2023

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