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

zetajs

v1.2.0

Published

Access ZetaOffice in the Browser from JavaScript via UNO

Readme

zetajs: Access ZetaOffice in the Browser from JavaScript via UNO

The zetajs library provides the facilities to run an instance of ZetaOffice integrated in your web site, allowing you to control it with JavaScript code via the LibreOffice UNO technology.

Use cases range from an in-browser office suite that looks and feels just like its desktop counterpart, to fine-tuned custom text editing and spreadsheet capabilities embedded in your web site, to a headless zetajs instance that does document conversion in the background.

For a detailed description of zetajs, see the Starting Points documentation.

(Technically, zetajs provides a wrapper on top of the Embind-based JavaScript scripting capabilities for LibreOffice. But it aims to provide a nicer, more idiomatic JavaScript experience, and completely hides the underlying machinery. In the future, it may even move away from that underlying Embind layer, in a backward-compatible way.)

Using ZetaOffice

Visit zetaoffice.net to learn more about ZetaOffice, its CDN and how to host ZetaOffice yourself.

Demo

To see a demo of zetajs in use, visit zetaoffice.net/#tryit.

screenshots

Examples and test code

Check out our examples. Each example has instructions how to run it in its respective folder.

| Example | Description | Toolkits/Libraries | Online Demo | | --- | --- | --- | --- | | standalone | Standalone Writer document canvas with simple formatting options. Simple code, easy to start with | Bootstrap |https://zetaoffice.net/demos/standalone/ | | letter-address-vuejs3 | Web form letter demo | Vue, w3.css | https://zetaoffice.net/demos/letter-address-vuejs3/ | web-office | Full office suite in the browser | Bootstrap | https://zetaoffice.net/demos/web-office/ | ping-monitor | Chart with values being added on the fly | Bootstrap, ping.js | https://zetaoffice.net/demos/ping-monitor/ | vuejs3-ping-tool | Chart with values being added on the fly | Vue, Bootstrap, ping.js | https://zetaoffice.net/demos/vuejs3-ping-tool/ | convertpdf | local file to PDF conversion service | Plain javascript | https://zetaoffice.net/demos/convertpdf/ | simple-examples | small examples displaying various API features | Plain javascript

These examples use the ZetaOffice CDN to get you started quickly.

Why zetajs

See how zetajs makes scripting ZetaOffice easy, building on the foundation of the LibreOffice UNO API:

1. Load a document

const css = zetajs.uno.com.sun.star;
const desktop = css.frame.Desktop.create(zetajs.getUnoComponentContext());
let xModel = desktop.getCurrentFrame().getController().getModel();
if (!xModel?.queryInterface(zetajs.type.interface(css.text.XTextDocument))) {
    xModel = desktop.loadComponentFromURL(
        'file:///android/default-document/example.odt', '_default', 0, []);
}

2. Change each paragraph in Writer into a random color

const xText = xModel.getText();
const xParaEnumeration = xText.createEnumeration();
for (const xParagraph of xParaEnumeration) {
    const color = Math.floor(Math.random() * 0xFFFFFF);
    xParagraph.setPropertyValue("CharColor", color);
}

Using with an own build

Please have a look into the respective config.sample.js file of each demo to use another ZetaOffice build.

You may also compile a custom LOWA build. There the folder workdir/installation/LibreOffice/emscripten/ will contain the files for the web root. If you host the WASM binary on another origin then the example code you will need to set a CORS header.

For the sources of the WASM binaries served by cdn.zetaoffice.net see:

  • https://git.libreoffice.org/core/+/refs/heads/distro/allotropia/zeta-24-2
  • https://github.com/allotropia/emscripten/commits/fixed-3.1.65
  • https://github.com/allotropia/qt5/tree/5.15.2%2Bwasm
  • https://github.com/allotropia/qtbase/tree/5.15.2%2Bwasm

Contributions

Submitting issues

First off, please search existing issues first, before filing a new one (see search on github).

If you think you've found a security problem, feel free to contact one of the project maintainers in private, for responsible disclosure.

Development and Code

For any LibreOffice questions (code, API, features), you'll find us on the LibreOffice IRC channel - changes to LibreOffice core then go through TDF's development process and gerrit code review system.

For changes to the zetajs library, just raise a pull request here, and make sure you've got permission to contribute your changes under the MIT license. For that, we use the Developer Certificate of Origin (DCO):

Developer Certificate of Origin
Version 1.1

Copyright (C) 2004, 2006 The Linux Foundation and its contributors.

Everyone is permitted to copy and distribute verbatim copies of this
license document, but changing it is not allowed.


Developer's Certificate of Origin 1.1

By making a contribution to this project, I certify that:

(a) The contribution was created in whole or in part by me and I
    have the right to submit it under the open source license
    indicated in the file; or

(b) The contribution is based upon previous work that, to the best
    of my knowledge, is covered under an appropriate open source
    license and I have the right under that license to submit that
    work with modifications, whether created in whole or in part
    by me, under the same open source license (unless I am
    permitted to submit under a different license), as indicated
    in the file; or

(c) The contribution was provided directly to me by some other
    person who certified (a), (b) or (c) and I have not modified
    it.

(d) I understand and agree that this project and the contribution
    are public and that a record of the contribution (including all
    personal information I submit with it, including my sign-off) is
    maintained indefinitely and may be redistributed consistent with
    this project or the open source license(s) involved.

When submitting a pull request, to make this certification please therefore add a sign-off line to your commits:

  Signed-off-by: Random J Developer <[email protected]>

Use your real name (sorry, no pseudonyms or anonymous contributions).

This project is tested with BrowserStack.