Socket
Socket
Sign inDemoInstall

shiki

Package Overview
Dependencies
Maintainers
4
Versions
104
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

shiki

shiki


Version published
Weekly downloads
1.7M
decreased by-8.53%
Maintainers
4
Weekly downloads
 
Created

Package description

What is shiki?

The shiki npm package is a beautiful syntax highlighter powered by the same syntax engine that Visual Studio Code uses. It can tokenize code in over 150 languages and comes with multiple themes. It is often used to generate syntax-highlighted code snippets for documentation, blogs, and other applications where displaying code is necessary.

What are shiki's main functionalities?

Syntax Highlighting

This feature allows you to highlight syntax of code snippets. The code sample demonstrates how to use shiki to highlight a JavaScript code snippet with the 'nord' theme.

const shiki = require('shiki');
shiki.getHighlighter({ theme: 'nord' }).then(highlighter => {
  const code = `console.log('Hello, world!');`;
  const language = 'javascript';
  const html = highlighter.codeToHtml(code, language);
  console.log(html);
});

Loading Different Themes

Shiki allows you to load different themes for syntax highlighting. This code sample shows how to initialize the highlighter with the 'material-palenight' theme.

const shiki = require('shiki');
shiki.getHighlighter({ theme: 'material-palenight' }).then(highlighter => {
  // Use the highlighter with the 'material-palenight' theme
});

Loading Custom Themes

Shiki also supports loading custom themes. In this code sample, a custom theme is loaded from a local JSON file.

const shiki = require('shiki');
const myTheme = require('./myTheme.json');
shiki.getHighlighter({ theme: myTheme }).then(highlighter => {
  // Use the highlighter with a custom theme
});

Highlighting with Line Numbers

Shiki can include line numbers in the highlighted code output. This code sample demonstrates how to generate HTML with line numbers for a given code snippet.

const shiki = require('shiki');
shiki.getHighlighter({ theme: 'nord' }).then(highlighter => {
  const code = `function sayHello() {\n  console.log('Hello, world!');\n}`;
  const language = 'javascript';
  const html = highlighter.codeToHtml(code, { lang: language, lineNumbers: true });
  console.log(html);
});

Other packages similar to shiki

Readme

Source

Shiki

Shiki is a beautiful Syntax Highlighter. Demo.

Usage

npm i shiki
const shiki = require('shiki')

shiki
  .getHighlighter({
    theme: 'nord'
  })
  .then(highlighter => {
    console.log(highlighter.codeToHtml(`console.log('shiki');`, { lang: 'js' }))
  })

// <pre class="shiki" style="background-color: #2e3440"><code>
//   <!-- Highlighted Code -->
// </code></pre>
<script src="https://unpkg.com/shiki"></script>
<script>
  shiki
    .getHighlighter({
      theme: 'nord'
    })
    .then(highlighter => {
      const code = highlighter.codeToHtml(`console.log('shiki');`, { lang: 'js' })
      document.getElementById('output').innerHTML = code
    })
</script>

Clone shikijs/shiki-starter to play with Shiki, or try it out on Repl.it.

Learn more from the GitHub repo: shikijs/shiki.

Credits

Sponsorship

If you find Shiki useful, please consider sponsoring my Open Source development. Thank you 🙏

https://github.com/sponsors/octref

License

MIT © Pine Wu

Keywords

FAQs

Package last updated on 19 Dec 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc