lilynode

0.5.2 • Public • Published

LilyNode

LilyNode is a Node.js wrapper for LilyPond.

Installation

npm install lilynode

Usage

import fs from "fs/promises"
import { renderFile } from "lilynode"

const pdf = await renderFile(
  filePath, // Path to LilyPond file
  { format: "pdf" },  // Options object to configure the rendering
)

await fs.writeFile("./test.pdf", pdf, { encoding: "binary" })

// or

const pdf = await render(
  "\\score { …", // Content of a LilyPond file
  { format: "pdf" },
)

Available Options

format: "midi" | "pdf" | "ps" | "png" | "svg" - File format of output file
Default value: png

resolution: number - Resolution of output in ppcm (only available for PNGs)
Default value: 50

binaryPath: string - Path to lilypond binary
Default value: lilypond

Development

Check out the makefile for all available commands.

Package Sidebar

Install

npm i lilynode

Weekly Downloads

1

Version

0.5.2

License

ISC

Unpacked Size

3.58 kB

Total Files

3

Last publish

Collaborators

  • adius