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

export-from-mattable

v2.0.1

Published

Fast and lightweight html TABLE to CSV converter. It exposes two modules ExportFromMatTable and ExportFromTable that enables exporting data from an Angular Material table (<mat-table>) or a standard table (<table>) into a Comma-Separated Values (CSV) form

Downloads

14

Readme

export-from-mattable

npm version license

Fast and lightweight html TABLE to CSV converter. This package includes two modules:

  • ExportFromMatTable: A synchronous mat TABLE(<mat-table>) to CSV converter written in plain JavaScript. It's fast and simple to use.
  • ExportFromTable: A synchronous html TABLE(<table>) to CSV converter written in plain js. Really fast and supports large datasets.

Features

  • Fast and lightweight
  • Support for standard TABLE as well as MAT-TABLE
  • Support for custom filename that also shows up in the top row

Requirements

  • None

Installation

NPM

You can install export-from-mattable as a dependency using NPM.

$ npm install export-from-mattable --save

Yarn

You can install export-from-mattable as a dependency using Yarn.

$ yarn add export-from-mattable

ExportFromMatTable

ExportFromMatTable can be used programmatically as a synchronous converter.

It retrieves the entire Angular Material Table with the tag (<mat-table>) that matches to the param tableId to load headers and rows to converts the data into the CSV format, and initiates the file download for the user.

Usage

import { ExportFromMatTable } from "export-from-mattable";

try {
  const tableId = '#tableId';
  const filename = 'Export HTML Data';
  ExportFromMatTable(tableId, filename);
  
  // Exported file name ==> Export HTML Data - Thu Jan 13 2023 15_42_45.csv
} catch (err) {
  console.error(err);
}

Parameters

  • tableId (string): The id of the desired angular material table or a standard table from the html you want to export.
  • filename (string): The desired filename for the exported CSV file.
Note

The ExportFromMatTable function assumes the presence of a <mat-table> structure in the DOM, with the appropriate structure of <mat-header-row>, <mat-header-cell>, <mat-row>, and <mat-cell> elements.

This module is designed to work in a browser environment with access to the Document Object Model (DOM) APIs (e.g., browser or Node.js).

ExportFromTable

ExportFromTable can be used programmatically as a synchronous converter.

It retrieves the html table (<table>) by matching the param tableId in the DOM, with the appropriate structure of <thead>, <tbody>, <th>, <tr>, and <td> elements. <tfoot> is not considered while exporting the table to a CSV format.

Usage

import { ExportFromTable } from "export-from-mattable";

try {
  const tableId = '#tableId';
  const filename = 'Export HTML Data';
  ExportFromTable(tableId, filename);

  // Exported file name ==> Export HTML Data - Thu Jan 13 2023 15_42_45.csv
} catch (err) {
  console.error(err);
}

Parameters

  • tableId (string): The id of the desired angular material table or a standard table from the html you want to export.
  • filename (string): The desired filename for the exported CSV file.
Note

While ExportFromTable function assumes the presence of a standard <table> structure in the DOM, with the appropriate structure of <thead>, <tbody>, <th>, <tr>, and <td> elements. <tfoot> is not a part of the exported file.

This module is designed to work in a browser environment with access to the Document Object Model (DOM) APIs (e.g., browser or Node.js).

License

See LICENSE.md.