
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
airppt-parser
Advanced tools
Wouldn't it be great if we could use a slideshow canvas as WSIWYG editor to rapidly design and ship UIs or start coding?
Airppt was built from the ground up to utilize the design elements of PPT presentations and reuse them anywhere. It is built with modularity, extensibility and flexibility in mind whilst abstracting a lot of the complexity. It's not a direct PPTX -> HTML converter; more like PPTX -> JSON -> HTML instead.
I'd also love for you to contribute. New to open source? I'm happy to walkthrough how to close your first issue. Pick a time that works best for you.
Powerpoint stores information in a series of complex XML mappings. Checkout the OpenXML Spec to get an idea of how complex it really is.
The parser reads a Powerpoint file, takes in a slide number, and parses it to a standardized JSON object. The JSON object returned is defined as a PowerPointElement
.
After utilizing the parser, we can pass it on to the renderer module to generate clean HTML/CSS, or you could use the object as you wish in your own application.
I highly recommend looking at the tests folder. I continually keep that up-to-date. Be sure to get the latest package from NPM.
let { AirParser } = require("airppt-parser");
let pptParser = new AirParser("./sample.pptx");
waitForParsing();
async function waitForParsing() {
//pass in the slide number and wait
let result = await pptParser.ParsePowerPoint(1);
//returns an array of Powerpoint Elements and some extra MetaData
console.log(result);
}
Here is the interface definition of a PowerpointElement
:
export interface PowerpointElement {
name: string;
shapeType: ElementType;
specialityType: SpecialityType;
elementPosition: {
x: number,
y: number
};
elementOffsetPosition: {
cx: number,
cy: number
};
paragraph?: {
text: string,
textCharacterProperties: {
fontAttributes: FontAttributes[],
font: string,
size: number,
fillColor: string
},
paragraphProperties: {
alignment: TextAlignment
}
};
shape?: {
border?: {
thickness: number,
color: string,
type: BorderType,
radius?: number
},
fill: {
fillType: FillType,
fillColor: string
},
opacity: number
};
fontStyle?: {
font: string,
fontSize: number,
fontColor: string
};
links?: {
Type: LinkType,
Uri: string
};
raw: any;
}
There's are also a number of enums as well. See the entire interface here.
FAQs
Parses Powerpoint (PPTX) to Standardized JSON Objects
We found that airppt-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.