Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/niklasvh/html2canvas-proxy-nodejs
Express middleware proxy for html2canvas
https://github.com/niklasvh/html2canvas-proxy-nodejs
html2canvas nodejs proxy
Last synced: about 22 hours ago
JSON representation
Express middleware proxy for html2canvas
- Host: GitHub
- URL: https://github.com/niklasvh/html2canvas-proxy-nodejs
- Owner: niklasvh
- Created: 2014-09-20T16:53:46.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2020-10-14T02:20:52.000Z (about 4 years ago)
- Last Synced: 2024-11-09T20:23:57.056Z (8 days ago)
- Topics: html2canvas, nodejs, proxy
- Language: JavaScript
- Homepage: https://html2canvas.hertzen.com/
- Size: 6.84 KB
- Stars: 121
- Watchers: 5
- Forks: 38
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
html2canvas-proxy
=================[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/niklasvh/html2canvas?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
[![Build Status](https://travis-ci.org/niklasvh/html2canvas-proxy-nodejs.svg)](https://travis-ci.org/niklasvh/html2canvas-proxy-nodejs)
[![NPM Downloads](https://img.shields.io/npm/dm/html2canvas-proxy.svg)](https://www.npmjs.org/package/html2canvas-proxy)
[![NPM Version](https://img.shields.io/npm/v/html2canvas-proxy.svg)](https://www.npmjs.org/package/html2canvas-proxy)#### Express middleware proxy for html2canvas ####
This library provides proxy middleware using express for [html2canvas](https://github.com/niklasvh/html2canvas).
For html2canvas >=v1.0.0 use >= v1.0.0 of this library.
#### Install ####
npm install html2canvas-proxy --save
#### Example ####
var proxy = require('html2canvas-proxy');
var express = require('express');var app = express();
app.use('/', proxy());