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

@arction/lcjs-headless

v1.6.0

Published

Node JS support package for LightningChart JS.

Downloads

22

Readme

LightningChart JS Node JS support package

Node JS support package for LightningChart JS.

This package uses JSDOM, node-canvas and headless-gl to bring the LightningChart JS to Node JS.

System dependencies

node-gyp is required on some platforms. See the documentation for node-gyp for installation instructions.

Linux

Only Ubuntu is currently officially supported. @arction/lcjs-headless most likely works on other distributions but might require extra work.

Ubuntu

Requirements:

$ sudo apt-get install -y build-essential libxi-dev libglu1-mesa-dev libglew-dev pkg-config

See headless-gl system dependencies for more details.

Windows

macOS

Getting Started

Install both @arction/lcjs-headless and @arction/lcjs from npm.

npm install @arction/lcjs-headless @arction/lcjs

When creating a new chart make sure to import the lightningChart() function from @arction/lcjs-headless instead of @arction/lcjs. Other LightningChart JS related imports can be imported from @arction/lcjs.

To render a chart to a buffer, call chart.engine.renderFrame(width, height). This function will provide you a buffer containing a single image.

import { lightningChart } from '@arction/lcjs-headless'

const lc = lightningChart()
const chart = lc.ChartXY()

chart.engine.renderFrame(1280, 720)

The @arction/lcjs-headless package provides a couple of helper functions to make the use of LightningChart JS in Node JS environment easier. You can render an image directly to a sharp or pngjs objects with renderToSharp and renderToPNG helper functions.

import { lightningChart, renderToSharp } from '@arction/lcjs-headless'

const lc = lightningChart()
const chart = lc.ChartXY()

renderToSharp(chart, 1920, 1080).toFile('out.png')
const fs = require('fs')
const { PNG } = require('pngjs')
const { lightningChart, renderToPNG } = require('@arction/lcjs-headless')

const lc = lightningChart()
const chart = lc.ChartXY()

const chartOutput = renderToPNG(chart, 1920, 1080)
const outputBuff = PNG.sync.write(chartOutput)
fs.writeFileSync('./chartOutput.png', outputBuff)

Local Resources

When using Map Chart with in Node JS you need to provide the path to the LCJS resource files. To do this provide resourcesBaseUrl with fs: prefix.

const lcjs = lightningChart({
    resourcesBaseUrl: `fs:${path.resolve(__dirname, 'node_modules', '@arction', 'lcjs', 'dist', 'resources')}`
})

Headless in Linux machine

When running lcjs-headless in a Linux environment that doesn't provide a X11 or OpenGL environment you will need two more packages to make the environment ready for lcjs-headless.

  1. Xvfb

  2. Mesa

xvfb-run -s "-ac -screen 0 1280x720x24" <node program>

Using helpers

There is a few helper methods available that are exported by this package.

renderToSharp

  • Requires sharp package to be installed. https://sharp.pixelplumbing.com/
    • Also install @types/sharp if you are using TypeScript
  • Prepares the frame to a "sharp" object, which allows the use of sharp to manipulate the image further or export it to a many different image formats.
import { lightningChart, renderToSharp } from '@arction/lcjs-headless'

const lc = lightningChart()

const chart = lc.ChartXY()

renderToSharp(chart, 1920, 1080).toFile('out.png')

Note: There is a known issue with using sharp on Windows. https://sharp.pixelplumbing.com/install#canvas-and-windows

renderToPNG

  • Requires pngjs package to be installed. https://github.com/lukeapage/pngjs
    • Also install @types/pngjs if you are using TypeScript.
  • Prepares the frame to a PNG image which can then be written to disk.
const fs = require('fs')
const { PNG } = require('pngjs')
const chartOutput = renderToPNG(chart, 1920, 1080)
const outputBuff = PNG.sync.write(chartOutput)
fs.writeFileSync('./chartOutput.png', outputBuff)

renderToBase64

  • Requires pngjs package to be installed. https://github.com/lukeapage/pngjs
    • Also install @types/pngjs if you are using TypeScript.
  • Uses the pngjs package to encode the raw RGBA data to a PNG and then encodes the buffer to a base 64 string.

renderToDataURI

  • Requires pngjs package to be installed. https://github.com/lukeapage/pngjs
    • Also install @types/pngjs if you are using TypeScript.
  • Uses the pngjs package to encode the raw RGBA data to a PNG and then encodes the buffer to a base 64 string and adds the required data uri string.

renderToRGBABuffer

  • Creates a raw Node JS buffer from the UInt8Array that is returned by the chart.engine.renderFrame.

Font support

Different font's can be easily used.

The font is specified in the application code just like you would specify it when using LightningChart JS in browser.

If the font is not a system font, then it needs to be registered before it can be used. Registering should be done before any chart is created. Registering can be done with registerFont function. If the font is not found, then a default font for the system will be used. This function is re-exported by this package from the node-canvas package.

import { lightningChart, registerFont } from '@arction/lcjs-headless'
// Register Open Sans font from a font file
registerFont('OpenSans-Regular.ttf', { family: 'Open Sans' })

// Create a chart
const lc = lightningChart()
const chart = lc.ChartXY()
// Use the registered font
chart.setTitleFont((f) => f.setFamily('Open Sans'))

Anti-aliasing

Anti-aliasing that is normally available in browsers is not available when using LightningChart JS in Node environment.

The devicePixelRatio option when creating a chart can be used to render the chart with higher resolution while scaling all elements so that when the image is downsampled to the target resolution it's displayed correctly but with the benefits of using higher resolution. Rendering at higher resolution is more work so the rendering is slower.

import { lightningChart, renderToSharp } from '@arction/lcjs-headless'

// Create a chart
const lc = lightningChart()
// Create the chart with a devicePixelRatio 3 to render at higher resolution for downsampling
const chart = lc.ChartXY({ devicePixelRatio: 3 })
// render the chart to a sharp object
// the renderToSharp has built in support for downsampling by providing the pixelRatio as the fourth parameter
renderToSharp(chart, 1920, 1080, false, 3).toFile('out.png')

Only the renderToSharp helper has a built in scaling to downsample the image. Other helpers or using the chart.engine.renderFrame method do not have built in scaling, instead these APIs will return the image at a resolution that is multiplied by the devicePixelRatio.

Troubleshooting

Fontconfig error: Cannot load default config file

Make sure to install fontconfig package.

Specified font is not used

If the font is not a system font, you will need to register the font file with registerFont function.