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

ngx-export-as

v1.16.0

Published

[![npm version](https://badge.fury.io/js/ngx-export-as.svg)](https://badge.fury.io/js/ngx-export-as)

Downloads

16,125

Readme

Angular 2+/Ionic 2+ Html to file export

Typescript angular module to export Table/HTML to popular file formats

npm version

A simple module to export the html or table elements to downloadable file.

Supported Formats:

  • Image - .png
  • PDF - .pdf
  • CSV - .csv
  • Text - .txt
  • Microsoft Excel sheets - .xls, .xlsx
  • Microsoft Word documents - .doc, .docx "REQUIRES TARGET CONFIG es2015" source issue
  • JSON - .json
  • XML - .xml

Used libraries "Useful for custom format options"

Demo

Running the demo:

git clone https://github.com/wnabil/ngx-export-as.git
cd ngx-export-as
npm install
ng build ngx-export-as
ng serve

Then navigate to localhost:4200 via your browser.

Get Started

(1) Get Angular export as package:

npm install --save ngx-export-as

(2) import ngx-export-as in your app.module.ts and imports array.

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';

import { ExportAsModule } from 'ngx-export-as';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    ExportAsModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})

(3) Import 'ExportAsService, ExportAsConfig' into your component.

import { ExportAsService, ExportAsConfig } from 'ngx-export-as';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  exportAsConfig: ExportAsConfig = {
    type: 'png', // the type you want to download
    elementId: 'myTableElementId', // the id of html/table element
  }
  constructor(private exportAsService: ExportAsService) { }

}

(4) Use the available methods into your component to download or get the required data type.

  function export() {
    // download the file using old school javascript method
    this.exportAsService.save(this.exportAsConfig, 'My File Name').subscribe(() => {
      // save started
    });
    // get the data as base64 or json object for json type - this will be helpful in ionic or SSR
    this.exportAsService.get(this.config).subscribe(content => {
      console.log(content);
    });
  }

IE Users

  • For Microsoft Internet Explorer this library requires many polyfills, please enable all BROWSER POLYFILLS.
  • typedarray Custom polyfill is also required.
  • Please refere to polyfills.ts demo

Contribution, Ideas and pull requests are welcome, Please open an issue on Github or contact me on [email protected] if i didn't response in approx 2 days.

Configuration

Basically all configurable options are wrapped into exportAsConfig object. For the special options for each format alone please set your custom options inside exportAsConfig.options object. Example:

const exportAsConfig: ExportAsConfig = {
  type: 'docx', // the type you want to download
  elementId: 'myTableIdElementId', // the id of html/table element,
  options: { // html-docx-js document options
    orientation: 'landscape',
    margins: {
      top: '20'
    }
  }
}

Important Notes

  • Json type get method will return the data in json object format not as base64
  • Not all the libraries supports the html element, for example the json and xlsx formats required the element to be an HTML Table

Change Logs

  • 1.0.0

    • Initial release
    • Implement all available methods
  • 1.1.0

    • Upgrade to Angular 6
  • 1.1.1

    • fix issue #5
  • 1.2.0

    • switch to ng lib, ng-packagr
  • 1.2.2

    • fix readme and license
  • 1.2.3

    • Fix issue #9 - update readme
    • Fix issue #12 - Add support for internet explorer "Please check the docs section for IE"
    • Fix issue #15 - Support for angular 4 and 5
    • Fix issue #16 - add support for special language chars
  • 1.2.4

    • fix all pdf issues for html2canvas - #1, #3, #11
  • 1.2.6

    • Save method now will return a subscription, please make sure to trigger .subscribe()
  • 1.3.0

    • Upgrade to Angular 8
  • 1.3.1

    • Add support for PDF header, footer, page number and other possible actions before rendering - Thanks to Sreekanth2108 #35 fix #38
  • 1.4.0

    • Remove docx library as a temp solution for SSR builds, fix #21 - please use v1.3.1 until we have a new implementation for docx
  • 1.4.1

    • Update for Angular 9
  • 1.4.2

    • Fix #61 add support for any element type for pdf: available types now are string, element, canvas, img or element id
  • 1.5.0

    • Fix #84 Support for Angular 10, Thanks to kgish
  • 1.12.0

    • Upgrade to Angular 12
  • 1.12.1

    • fix #76 Re-enable docx "project target es2015 is required"
  • 1.12.2

    • fix #97, fix csv comma, Thanks to souradeep07
  • 1.13.0

    • fix #102, Upgrade to Angular 13
  • 1.14.1

  • 1.15.0

    • fix #110, Support for Angular 15, Thanks to MuhAssar
  • 1.15.1

    • fix PR #112, html2canvas SSR fix, Thanks to enea4science
  • 1.16.0

    • Angular 16