expressive-code
A framework-agnostic wrapper package that provides convenient access to the key packages of Expressive Code, an engine for presenting source code on the web.
Instead of having to install and manage multiple Expressive Code packages separately, this package includes both the core engine and all default plugins as dependencies and exports them.
Included packages:
When should I use this?
Using this package directly is only recommended for advanced use cases, e.g. to create integrations of Expressive Code into other tools and frameworks.
If you just want to render code blocks on your website, you should use one of the higher-level packages instead, e.g. astro-expressive-code
or rehype-expressive-code
for code blocks in markdown / MDX documents.
Documentation
Read the Expressive Code docs to learn more about the features provided by Expressive Code.
Installation
npm install expressive-code
Usage example
import { ExpressiveCode, ExpressiveCodeConfig } from 'expressive-code'
import { toHtml } from 'expressive-code/hast'
const ec = new ExpressiveCode()
const baseStyles = await ec.getBaseStyles()
const { renderedGroupAst, styles } = await ec.render({
code: 'console.log("Hello world!")',
language: 'js',
meta: '',
})
let htmlContent = toHtml(renderedGroupAst)
const stylesToPrepend: string[] = []
stylesToPrepend.push(baseStyles)
stylesToPrepend.push(...styles)
if (stylesToPrepend.length) {
htmlContent = `<style>${[...stylesToPrepend].join('')}</style>${htmlContent}`
}
console.log(htmlContent)