npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ocx-parser

v0.0.1-beta

Published

A parser for OCX (Open Cap Table) files

Downloads

7

Readme

OCX Parser

OCX Parser is a TypeScript/JavaScript library for parsing Open Cap Table (OCX) files. It provides a simple interface to extract cap table information from OCX files in both Node.js and browser environments.

Installation

You can install the OCX Parser using npm:

npm install ocx-parser

Or using yarn:

yarn add ocx-parser

Usage

Node.js

Here's an example of how to use the OCX Parser in a Node.js environment:

import { createOCXParser } from "ocx-parser";
import fs from "fs/promises";

async function parseOCXFile(filePath) {
  const parser = createOCXParser();

  try {
    const fileBuffer = await fs.readFile(filePath);
    const result = await parser.parseCapTable(fileBuffer);

    if (result.status === "success") {
      console.log("Parsing successful:", result.data);
    } else {
      console.error("Parsing failed:", result.error);
    }
  } catch (error) {
    console.error("Error reading or parsing file:", error);
  }
}

// Usage
parseOCXFile("/path/to/your/ocx/file.xlsx");

Browser

In a browser environment, you can use the OCX Parser with file input:

<!DOCTYPE html>
<html>
  <body>
    <input type="file" id="fileInput" accept=".xlsx" />
    <script type="module">
      import { createOCXParser } from "ocx-parser";

      const fileInput = document.getElementById("fileInput");
      fileInput.addEventListener("change", async (event) => {
        const file = event.target.files[0];
        if (file) {
          const parser = createOCXParser();
          try {
            const result = await parser.parseCapTable(file);
            if (result.status === "success") {
              console.log("Parsing successful:", result.data);
            } else {
              console.error("Parsing failed:", result.error);
            }
          } catch (error) {
            console.error("Error parsing file:", error);
          }
        }
      });
    </script>
  </body>
</html>

API

createOCXParser()

Creates and returns an instance of the OCX parser.

parser.parseCapTable(file: File | Buffer): Promise<ParseResult>

Parses the given OCX file and returns a Promise that resolves to a ParseResult object.

  • file: Can be a File object (in browser environments) or a Buffer (in Node.js environments).
  • Returns: Promise<ParseResult>

ParseResult

The ParseResult object has the following structure:

interface ParseResult {
  status: "success" | "error";
  data: CapTable | null;
  error: Error | null;
}
  • status: Indicates whether the parsing was successful or encountered an error.
  • data: Contains the parsed cap table data if successful, null otherwise.
  • error: Contains the error object if an error occurred, null otherwise.

CapTable

The CapTable object represents the parsed data from the OCX file. It includes information about the OCX version, context data, stakeholders, and available shares for grant.

Error Handling

The OCX Parser uses a ParseResult object to handle both successful parsing and errors. Always check the status of the ParseResult before accessing the data or error properties.

Dependencies

This package depends on xlsx for parsing Excel files. Make sure it's properly installed in your project.

License

This project is licensed under the MIT License - see the LICENSE file for details.