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 🙏

© 2025 – Pkg Stats / Ryan Hefner

jasper_nodejs

v1.0.20

Published

wrapper jasper report untuk nodejs

Readme

jasper_nodejs

Generate JasperReports from Node.js using JasperStarter / jasper binary.

✨ Features

  • Compile .jrxml to .jasper
  • Export report to PDF / HTML / XLS / etc
  • Support parameters
  • Support database connection (Postgresql, Mysql)
  • Works with pure Node.js or frameworks (AdonisJS, Express, etc)

☕ Java Requirement

This package requires Java (JRE or JDK) to be installed.

Supported Versions

  • Java 8

Check Java installation

java -version

🐧 Java Linux Installation (Ubuntu / Debian)

Install Java

sudo apt update
sudo apt -y install openjdk-8-jdk

🪟 Java Windows Installation

Install Java

https://www.java.com/en/download/manual.jsp

📦 Installation

npm install jasper_nodejs

Contoh penggunaan:

import ReportService from "jasper_nodejs";

const reportService = new ReportService();

const outputDir = app.makePath("tmp/reports"); // specify the directory where the generated report files will be saved (app.makepath is adonisjs)

// Pastikan folder ada
if (!fs.existsSync(outputDir)) fs.mkdirSync(outputDir, { recursive: true });

try {
  const outputFile = await reportService.export({
    reportFile: app.makePath("resources/reports/jadwal.jasper"), // you may use the .jrxml extension; the .jasper file is generated by compiling the .jrxml template
    outputDir: outputDir,
    format: "pdf", // e.g view, print, pdf, rtf,  xls,  xlsMeta, xlsx, docx, odt, ods, pptx,  csv,  csvMeta,  html, xhtml, xml, jrprint
    params: {
      idproduct: 3, // Parameters defined here will be forwarded to Jasper reports and can be accessed using $P{idproduct}.
    },
    db: {
      dbname: "your_database_name", // e.g. postgres
      host: "your_database_host", // e.g. localhost
      driver: "postgres", // e.g postgres, mysql
      port: "your_database_port", // e.g default PostgreSQL port 5433
      username: "your_database_user", // e.g. postgres
      password: "your_database_password",
    },
  });
} catch (error) {
  console.log(error);
}