jsreports

0.0.1 • Public • Published

JSReports

A JavaScript reporting library.

JSReports is modeled after two excellent open source projects:

JasperReports

and

Backbone.js

JSReports is a work in progress. Following is some examples of what the syntax might look like:

JasperReport.jrxml -> jrxml2json() -> JasperReport.json

var jsreports = require('jsreports');
 
var json = {...}; // JasperReport.json
var data = {...}; // report data
 
var report = new jsreports.Report(json, options);
 
report.fill(data);
 
report.export('pdf'); // or report.exportPDF();
report.export('html'); // or report.exportHTML();
report.export('xls'); // or report.exportXLS();

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.1
    35
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.1
    35
  • 0.0.0
    1

Package Sidebar

Install

npm i jsreports

Weekly Downloads

36

Version

0.0.1

License

none

Last publish

Collaborators

  • noisypebble