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

typst

v0.10.0-8

Published

A new markup-based typesetting system that is powerful and easy to learn.

Downloads

360

Readme

Typst.js

📦 Typst for JavaScript

# ✨ Use Typst right away through the power of npx! 🚀
npx typst --help
npx typst compile example.typ example.pdf
npx typst query example.typ "<note>"
#=> [ { "func": "metadata", "value": "This is a note" } ]
// 👨‍💻 Or use the JavaScript API (with types!)
import * as typst from "typst";
await typst.compile("example.typ", "example.pdf");
console.log(await typst.query("example.typ", "<note>"));
//=> [ { func: 'metadata', value: 'This is a note' } ]

👨‍💻 Includes the Typst CLI so you can npx typst
💻 Provides a typed JavaScript API so you can typst.compile()
📑 Install it locally with npm install --save as a project-level dependency
🌎 Or install it globally with npm install --global

📑 Make sure you check out the official Typst website!

Installation

npm install typst
import * as typst from "npm:typst";

🛑 Typst does not yet work in the browser. WASM support is planned.

Usage

This package provides both the Typst CLI as well as a JavaScript API. To use the CLI, just run npx typst --help.

The Typst compiler

Usage: typst [OPTIONS] <COMMAND>

Commands:
  compile  Compiles an input file into a supported output format [aliases: c]
  watch    Watches an input file and recompiles on changes [aliases: w]
  query    Processes an input file to extract provided metadata
  fonts    Lists all discovered fonts in system and custom font paths
  update   Self update the Typst CLI
  help     Print this message or the help of the given subcommand(s)

Options:
  -v, --verbosity...  Sets the level of logging verbosity: -v = warning & error, -vv = info, -vvv = debug, -vvvv = trace
      --cert <CERT>   Path to a custom CA certificate to use when making network requests [env: TYPST_CERT=]
  -h, --help          Print help
  -V, --version       Print version

ℹ The typst update command will fail. Use npm install typst@latest to update it through npm.

All of the major Typst CLI commands are also exposed for use in JavaScript:

import * as typst from "typst";
await typst.query("example.typ", "<note>"); //=> object[]
await typst.compile("example.typ", "example.pdf");
await typst.watch("example.typ", "example.pdf");
await typst.fonts(); //=> string[]
await typst.help(); //=> string
await typst.version(); //=> string

📚 Check out the Typst.js documentation website for more details!

Example

#set page(width: 10cm, height: auto)
#set heading(numbering: "1.")

= Fibonacci sequence
The Fibonacci sequence is defined through
the recurrence relation $F_n = F_(n-1) + F_(n-2)$.
It can also be expressed in _closed form:_

$ F_n = round(1 / sqrt(5) phi.alt^n), quad
  phi.alt = (l + sqrt(5)) / 2 $

#let count = 8
#let nums = range(1, count + 1)
#let fib(n) = (
  if n <= 2 { 1 }
  else { fib(n - 1) + fib(n - 2) }
)

The first #count numbers of the sequence are:

#align(center, table(
  columns: count,
  ..nums.map(n => $F_#n$),
  ..nums.map(n => str(fib(n))),
))
typst compile example.typ
$BROWSER example.pdf

Development

This package contains two primary parts: a binary redistribution setup using a bunch of optionalDependencies and a bunch of pretty typst ... CLI wrapper functions.

When you clone this repository and run npm install, it auto runs the tools/generate-dist-package script with your current $OS-$ARCH tuple and uses npm link to link that to the current workspace. This is for debugging.

To bump the version, use npm version --no-git-tag-version $NEW_VERSION so that the tools/postversion.js script gets run to realign the optionalDependencies with the new version field. You can do this manually if you prefer. 🤷‍♂️

Then, when you want to create a new release, remember to run npm run build after the version field has been updated (it gets used in the build step). This will generate a bunch of out/$OS-$ARCH/ folders, each of which is a targeted distribution of a native binary that only works on that platform.

Then finally when you run npm publish, there's a hook to publish all the out/$OS-$ARCH/ packages (@typst-community/typst-$OS-$ARCH) before finally publishing the root typst package.