
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
Toolkit for parsing, manipulating, and visualizing Office documents (XLSX / DOCX / PPTX).
Inspect files from the CLI, edit programmatically with JSON specs, embed viewers in React apps.
npm install aurochs
npx aurochs <format> <command> [options]
# Inspect
aurochs xlsx info book.xlsx # Sheet count, row count, style counts
aurochs xlsx show book.xlsx Sheet1 # Display sheet as table
aurochs xlsx preview book.xlsx # Terminal preview
# Analyze
aurochs xlsx formulas book.xlsx # List formulas
aurochs xlsx names book.xlsx # Named ranges
aurochs xlsx validation book.xlsx # Data validation rules
# Edit
aurochs xlsx build spec.json # Create or modify from JSON spec
# Inspect
aurochs docx info report.docx # Paragraph count, table count, sections
aurochs docx extract report.docx # Extract text
aurochs docx preview report.docx # Terminal preview
# Structure
aurochs docx styles report.docx # List styles
aurochs docx numbering report.docx # Numbering definitions
aurochs docx tables report.docx # Table structure
# Edit
aurochs docx build spec.json # Create new document
aurochs docx patch spec.json # Patch existing document
# Inspect
aurochs pptx info deck.pptx # Slide count, dimensions
aurochs pptx list deck.pptx # List slides
aurochs pptx show deck.pptx 1 # List shapes on slide
# Analyze
aurochs pptx extract deck.pptx # Extract text
aurochs pptx images deck.pptx # List images
aurochs pptx tables deck.pptx # List tables
aurochs pptx diff a.pptx b.pptx # Compare two files
# Preview
aurochs pptx preview deck.pptx # ASCII art preview
# Edit
aurochs pptx build spec.json # Create new presentation
aurochs pptx patch spec.json # Patch existing presentation
aurochs/pptx/parserOpen and parse PPTX files.
import { openPresentation } from "aurochs/pptx/parser";
const pres = openPresentation(zipFile);
console.log(pres.count); // number of slides
console.log(pres.size); // { width, height } in pixels
for (const slide of pres.slides()) {
// slide.content, slide.layout, slide.theme, ...
}
Exports:
openPresentation(file, options?) — parse PPTX and return PresentationPresentation, Slide, SlideInfo, PresentationFile, SlideSizeaurochs/pptx/renderer/svgRender slides to SVG strings.
import { renderSlideToSvg } from "aurochs/pptx/renderer/svg";
const svg = renderSlideToSvg(slide, theme, { width: 960, height: 540 });
Exports:
renderSlideToSvg, renderSlideSvg — slide to SVGrenderGeometryPathData — shape geometry pathsrenderFillToStyle, renderLineToStyle — fill/stroke stylessvg, g, rect, path, text, ...)aurochs/pptx/renderer/asciiRender slides to ASCII art for terminal display.
import { renderSlideAscii } from "aurochs/pptx/renderer/ascii";
const ascii = renderSlideAscii(slide, { width: 80, height: 24 });
console.log(ascii);
aurochs/pptx/renderer/mermaidConvert slides to Mermaid diagram syntax.
import { renderSlideMermaid } from "aurochs/pptx/renderer/mermaid";
const mermaid = renderSlideMermaid(slide);
aurochs/pptx/viewerReact components for embedding presentation viewers.
import { PresentationSlideshow } from "aurochs/pptx/viewer";
<PresentationSlideshow
slides={slides}
onSlideChange={(index) => console.log(index)}
/>
Components:
PresentationSlideshow — fullscreen presentation playbackPresentationViewer — viewer with thumbnail navigationEmbeddableSlide — single slide embedSlideShareViewer — paginated slide browserSupports React 18/19. react and react-dom are optional peer dependencies.
FAQs
Toolkit for parsing, manipulating, and visualizing Office documents (XLSX / DOCX / PPTX).
The npm package aurochs receives a total of 261 weekly downloads. As such, aurochs popularity was classified as not popular.
We found that aurochs demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.