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

citeproc-plus

v2.0.4

Published

Citeproc-js + citation styles bundled

Downloads

7,325

Readme

citeproc-plus

citeproc-plus incorporates 2000+ styles and 50+ locale files from the Citation Style Language project, as well as citeproc-js, the JavaScript CSL processor library by Frank Bennett.

This is an early version so be aware that the API may change. You can try a demo at https://fiduswriter.github.io/citeproc-plus/.

This package is meant for those who want to use citeproc-js, but don't want to have to deal with retrieving and storing citation styles and localizations from other places on the web.

How to use

  1. Install it from npm together with your other dependencies:

    npm install citeproc-plus --save

  2. Configure your bundler to emit the .json.gz style and locale chunks as static assets (most modern bundlers, including Vite, Webpack, and Rollup, do this automatically for non-JavaScript imports). With Webpack's asset/resource module type, for example:

module.exports = {
  mode: "production",
  output: {
    publicPath: "dist/",
  },
  module: {
    rules: [
      {
        test: /\.json\.gz$/i,
        type: 'asset/resource',
      },
    ],
  },
};
  1. Import CSL and styles in your app:
import {CSL} from "citeproc-plus"
  1. Where in citeproc-js you would have called:
const citeproc = new CSL.Engine(sys, style, lang, forceLang)

Do instead:

const csl = new CSL()

const citeproc = await csl.getEngine(
  sys, // required, same as for citeproc-js, but without the retrieveLocale method
  styleId, // required, The id of the style to use
  lang, // optional, same as for citeproc-js
  forceLang // optional, same as for citeproc-js
)

to create a selector of all available styles:

csl.getStyles().then(
  styles => dom.innerHTML =
    `<select>${
      Object.entries(styles).map(
        ([key, value]) => `<option value="${key}">${value}</option>`
      ).join('')
    }</select>`
)

or if you prefer the then()-function, do:

const csl = new CSL()

let citeproc

csl.getEngine(
  sys, // required, same as for citeproc-js, but without the retrieveLocale method
  styleId, // required, The id of the style to use
  lang, // optional, same as for citeproc-js
  forceLang // optional, same as for citeproc-js
).then(
  engine => citeproc = engine
)

Notice that you only need one CSL instance with which you can create any number of citeproc instances with different styles, languages and sys objects connected to them. Notice also that the method to get an engine is asynchronous as it potentially has to download files from your static files storage.

Advanced uses

JATS

There is an extra style with the styleId jats that can be used as part of conversion packages. This style is not listed among the list of styles as it is not meant for human consumption.

Manipulating a style in JavaScript

If instead of the styleId you hand it a preprocessed style object it will use it as well without caching.

Registering your own styles

If you want to use a style that is not bundled with citeproc-plus (for example one loaded from disk or fetched from your own server), register the preprocessed style object under an id and then reference it by that id:

const csl = new CSL()
csl.registerStyle("my-style", preprocessedStyleObject)

const citeproc = await csl.getEngine(sys, "my-style", lang)

As a convenience, createCSL builds a CSL instance with a map of styles already registered:

import {createCSL} from "citeproc-plus"

const csl = createCSL({"my-style": preprocessedStyleObject})
const citeproc = await csl.getEngine(sys, "my-style", lang)

Registered styles take precedence over the bundled catalog, and their locales are resolved natively in both the browser and Node.js.

Importing CSL

Notice that the styles in this package are not stored in the citation style language (CSL) directly. There is a tool to convert CSL to the JSON of preprocessed style object that is needed here.