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 🙏

© 2026 – Pkg Stats / Ryan Hefner

jasper_nodejs

v1.0.45

Published

wrapper jasper report untuk nodejs

Downloads

67

Readme

jasper_nodejs

Generate JasperReports from Node.js using Jasper Server Compiled Binary.

✨ Features

  • Compile .jrxml to .jasper
  • Export report to PDF / HTML / XLS / etc
  • Support parameters
  • Support database connection (Postgresql, Mysql, json comming soon)
  • 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

Example Usage:

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)

const fileName = `${cuid()}`;
const formatType = "pdf";
// output filename
const pdfPath = path.join(outputDir, fileName);

// Ensure the directory exists
if (!fs.existsSync(outputDir)) fs.mkdirSync(outputDir, { recursive: true });

try {
  const outputFile = await reportService
    .export({
      // you may use the .jrxml extension; the .jasper file is generated by compiling the .jrxml template
      reportFile: app.makePath("resources/reports/jadwal.jasper"),
      // If you want to use a custom output filename, do NOT pass the path of the
      // directory you created.
      // Instead, append an additional path segment.
      // The last path segment (which does NOT exist as a directory)
      // will be treated by Jasper as the output filename.
      outputDir: pdfPath,
      // e.g view, print, pdf, rtf,  xls,  xlsMeta, xlsx, docx, odt, ods, pptx,  csv,  csvMeta,  html, xhtml, xml, jrprint
      format: "pdf",
      // Parameters defined here will be forwarded to Jasper reports and can be accessed using $P{idproduct}. if you need jsonb parameter you can use like this
      params: {
        idproduct: 3,
        details: {
          price: 5000,
          expired: "2025-12-31",
        },
      },
      db: {
        // e.g. postgres
        dbname: "your_database_name",
        // e.g. localhost
        host: "your_database_host",
        // e.g postgres, mysql
        driver: "postgres",
        // e.g default PostgreSQL port 5433
        port: "your_database_port",
        // e.g. postgres
        username: "your_database_user",
        // e.g. akd1QDF
        password: "your_database_password",
      },
    })
    .run();

  // The run() method can be replaced with command().
  // If you use command(), it will return the generated CLI command
  // and store it in the outputFile variable instead of executing it.
  // You can then copy and paste the command into the terminal
  // to debug or generate the PDF manually.
} catch (error) {
  console.log(error);
}