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

shikix

v0.0.3

Published

An ESM-focused rewrite of shiki

Downloads

7

Readme

Shikix

NPM version

An ESM-focused rewrite of shiki, a beautiful syntax highlighter based on TextMate grammars. And a little bit more.

Changes

Install

npm install -D shikix

Usage

Bundled Usage

Basic usage is pretty much the same as shiki, only that some APIs are dropped, (for example, the singular theme options). Each theme and language file are dynamically imported ES modules, it would be better to list the languages and themes explicitly to have the best performance.

import { getHighlighter } from 'shikix'

const shiki = await getHighlighter({
   themes: ['nord'],
   langs: ['javascript'],
})

// optionally, load themes and languages after creation
await shiki.loadTheme('lumos-light')
await shiki.loadLanguage('css')

const code = shiki.codeToHtml('const a = 1', { lang: 'javascript' })

Unlike shiki, shikix does not load any themes or languages when not specified.

import { getHighlighter } from 'shikix'

const shiki = await getHighlighter()

shiki.codeToHtml('const a = 1', { lang: 'javascript' }) // throws error, `javascript` is not loaded

await shiki.loadLanguage('javascript') // load the language

If you want to load all themes and languages (not recommended), you can iterate all keys from bundledLanguages and bundledThemes.

import { bundledLanguages, bundledThemes, getHighlighter } from 'shikix'

const shiki = await getHighlighter({
   themes: Object.keys(bundledThemes),
   langs: Object.keys(bundledLanguages),
})

shiki.codeToHtml('const a = 1', { lang: 'javascript' })

Or if your usage can be async, you can try the shorthands which will load the theme/language on demand.

Fine-grained Bundle

When importing shikix, all the themes and languages are bundled as async chunks. Normally it won't be a concern to you as they are not being loaded if you don't use them. While in some cases you want to control what to bundle size, you can use the core and compose your own bundle.

// `shikix/core` entry does not include any themes or languages or the wasm binary.
import { getHighlighterCore } from 'shikix/core'

// `shikix/wasm` contains the wasm binary inlined as base64 string.
import { getWasmInlined } from 'shikix/wasm'

// directly import the theme and language modules, only the ones you imported will be bundled.
import nord from 'shikix/themes/nord.mjs'

const shiki = await getHighlighterCore({
   themes: [
      // instead of strings, you need to pass the imported module
      nord,
      // or a dynamic import if you want to do chunk splitting
      import('shikix/themes/lumos-light.mjs')
   ],
   langs: [
      import('shikix/langs/javascript.mjs'),
      // shikix will try to interop the module with the default export
      () => import('shikix/langs/css.mjs'),
      // or a getter that returns custom grammar
      async () => JSON.parse(await fs.readFile('my-grammar.json', 'utf-8'))
   ],
   loadWasm: getWasmInlined
})

// optionally, load themes and languages after creation
await shiki.loadTheme(import('shikix/themes/lumos-light.mjs'))

const code = shiki.codeToHtml('const a = 1', { lang: 'javascript' })

CJS Usage

shikix is published as ESM-only to reduce the package size. It's still possible to use it in CJS, as Node.js supports importing ESM modules dynamically in CJS.

For example, the following ESM code:

// ESM
import { getHighlighter } from 'shikix'

async function main() {
   const shiki = await getHighlighter({
      themes: ['nord'],
      langs: ['javascript'],
   })

   const code = shiki.codeToHtml('const a = 1', { lang: 'javascript' })
}

Can be written in CJS as:

// CJS
async function main() {
   const { getHighlighter } = await import('shikix')

   const shiki = await getHighlighter({
      themes: ['nord'],
      langs: ['javascript'],
   })

   const code = shiki.codeToHtml('const a = 1', { lang: 'javascript' })
}

CDN Usage

To use shikix in the browser via CDN, you can use esm.run from jsDelivr.

<body>
  <div id="foo"></div>

  <script type="module">
    import { codeToHtml } from 'https://esm.run/[email protected]' // be sure to specify the exact version

    const foo = document.getElementById('foo')
    foo.innerHTML = await codeToHtml('console.log("Hi, Shiki on CDN :)")', { lang: 'js', theme: 'lumos-light' })
  </script>
</body>

It's quite efficient as it will only load the languages and themes on demand. For the code snippet above, only four requests will be fired (shikix, shikix/themes/lumos-light.mjs, shikix/langs/javascript.mjs, shikix/wasm.mjs), with around 200KB data transferred in total.

Demo

Cloudflare Workers

Cloudflare Workers does not support initializing WebAssembly from binary data, so the default wasm build won't work. You need to upload the wasm as assets and import it directly.

Meanwhile, it's also recommended to use the Fine-grained Bundle approach to reduce the bundle size.

import { getHighlighterCore, loadWasm } from 'shikix/core'
import nord from 'shikix/themes/nord.mjs'
import js from 'shikix/langs/javascript.mjs'

// import wasm as assets
import wasm from 'shikix/onig.wasm'

// load wasm outside of `fetch` so it can be reused
await loadWasm(obj => WebAssembly.instantiate(wasm, obj))

export default {
   async fetch() {
      const highlighter = await getHighlighterCore({
         themes: [nord],
         langs: [js],
      })

      return new Response(highlighter.codeToHtml('console.log(\'shiki\');', { lang: 'js' }))
   },
}

Additional Features

Shorthands

In addition to the getHighlighter function, shikix also provides some shorthand functions for simpler usage.

import { codeToHtml, codeToThemedTokens } from 'shikix'

const code = await codeToHtml('const a = 1', { lang: 'javascript', theme: 'nord' })
const tokens = await codeToThemedTokens('<div class="foo">bar</div>', { lang: 'html', theme: 'min-dark' })

Currently supports:

  • codeToThemedTokens
  • codeToHtml
  • codeToHast

Internally they maintain a singleton highlighter instance and load the theme/language on demand. Different from shiki.codeToHtml, the codeToHtml shorthand function returns a Promise and lang and theme options are required.

Note: These are only available in the bundled usage, a.k.a the main shikix entry. If you are using the fine-grained bundle, you can create your own shorthands using createSingletonShorthands or port it your own.

Light/Dark Dual Themes

shikix added an experimental light/dark dual themes support. Different from markdown-it-shiki's approach which renders the code twice, shikix's dual themes approach uses CSS variables to store the colors on each token. It's more performant with a smaller bundle size.

Use codeToHtml to render the code with dual themes:

import { getHighlighter } from 'shikix'

const shiki = await getHighlighter({
   themes: ['nord', 'min-light'],
   langs: ['javascript'],
})

const code = shiki.codeToHtml('console.log("hello")', {
   lang: 'javascript',
   themes: {
      light: 'lumos-light',
      dark: 'nord',
   }
})

The following HTML will be generated (demo preview):

<pre
  class="shiki shiki-themes min-light--nord"
  style="background-color: #ffffff;--shiki-dark-bg:#2e3440ff;color: #ffffff;--shiki-dark-bg:#2e3440ff"
  tabindex="0"
>
  <code>
    <span class="line">
      <span style="color:#1976D2;--shiki-dark:#D8DEE9">console</span>
      <span style="color:#6F42C1;--shiki-dark:#ECEFF4">.</span>
      <span style="color:#6F42C1;--shiki-dark:#88C0D0">log</span>
      <span style="color:#24292EFF;--shiki-dark:#D8DEE9FF">(</span>
      <span style="color:#22863A;--shiki-dark:#ECEFF4">&quot;</span>
      <span style="color:#22863A;--shiki-dark:#A3BE8C">hello</span>
      <span style="color:#22863A;--shiki-dark:#ECEFF4">&quot;</span>
      <span style="color:#24292EFF;--shiki-dark:#D8DEE9FF">)</span>
    </span>
  </code>
</pre>

To make it reactive to your site's theme, you need to add a short CSS snippet:

Query-based Dark Mode
@media (prefers-color-scheme: dark) {
  .shiki,
  .shiki span {
    background-color: var(--shiki-dark-bg) !important;
    color: var(--shiki-dark) !important;
  }
}
Class-based Dark Mode
html.dark .shiki,
html.dark .shiki span {
  background-color: var(--shiki-dark-bg) !important;
  color: var(--shiki-dark) !important;
}

Multiple Themes

It's also possible to support more than two themes. In the themes object, you can have an arbitrary number of themes, and specify the default theme with defaultColor option.

const code = shiki.codeToHtml('console.log("hello")', {
   lang: 'javascript',
   themes: {
      light: 'github-light',
      dark: 'github-dark',
      dim: 'github-dimmed',
      // any number of themes
   },

   // optional customizations
   defaultColor: 'light',
   cssVariablePrefix: '--shiki-'
})

A token would be generated like:

<span style="color:#1976D2;--shiki-dark:#D8DEE9;--shiki-dim:#566575">console</span>

And then update your CSS snippet to control then each theme taking effect. Here is an example:

Demo preview

Without Default Color

If you want to take full control of the colors, or avoid using !important to override, you can optionally disable the default color by setting defaultColor to false.

const code = shiki.codeToHtml('console.log("hello")', {
   lang: 'javascript',
   themes: {
      light: 'lumos-light',
      dark: 'lumos-dark',
   },
   defaultColor: false, // <--
})

With it, a token would be generated like:

<span style="--shiki-dark:#D8DEE9;--shiki-light:#2E3440">console</span>

In that case, the generated HTML would have no style out of the box, you need to add your own CSS to control the colors.

It's also possible to control the theme in CSS variables, for more, reference to the great research and examples by @mayank99 in this issue #6.

Bundle Size

You can inspect the bundle size in detail on pkg-size.dev/shikix.

As of v0.2.2, measured at 12th, August 2023:

| Bundle | Size (minified) | Size (gzip) | Notes | | --- | ---: | ---: | --- | | shikix | 5.9 MB | 1.2 MB | includes all themes and languages as async chunks | | shikix/core | 75 KB | 23 KB | no themes or languages, compose on your own | | shikix/wasm | 623 KB | 231 KB | wasm binary inlined as base64 string |

What's Next?

shikix is a usable exploration of improving the experience of using shiki in various of scenarios. It's intended to push some of the ideas back to shiki, and eventually, this package might not be needed. Before that, you can use it as a replacement for shiki if you have similar requirements. It would be great to hear your feedback and suggestions in the meantime!

License

MIT