Socket
Socket
Sign inDemoInstall

@shikijs/core

Package Overview
Dependencies
0
Maintainers
0
Versions
41
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@shikijs/core


Version published
Maintainers
0
Created

Package description

What is @shikijs/core?

@shikijs/core is a syntax highlighter for the web that is designed to be fast, lightweight, and easy to use. It supports a wide range of programming languages and can be easily integrated into various web applications.

What are @shikijs/core's main functionalities?

Syntax Highlighting

This feature allows you to highlight code syntax for various programming languages. The code sample demonstrates how to use the @shikijs/core package to highlight JavaScript code using the 'nord' theme.

const shiki = require('@shikijs/core');

async function highlightCode() {
  const highlighter = await shiki.getHighlighter({ theme: 'nord' });
  const code = `const x = 10;`;
  const highlightedCode = highlighter.codeToHtml(code, { lang: 'javascript' });
  console.log(highlightedCode);
}

highlightCode();

Custom Themes

This feature allows you to create and use custom themes for syntax highlighting. The code sample demonstrates how to define a custom theme and use it to highlight JavaScript code.

const shiki = require('@shikijs/core');

async function customThemeHighlight() {
  const highlighter = await shiki.getHighlighter({
    theme: {
      name: 'my-custom-theme',
      type: 'dark',
      colors: {
        'editor.background': '#1e1e1e'
      },
      tokenColors: [
        {
          scope: 'comment',
          settings: {
            foreground: '#6A9955'
          }
        }
      ]
    }
  });
  const code = `// This is a comment`;
  const highlightedCode = highlighter.codeToHtml(code, { lang: 'javascript' });
  console.log(highlightedCode);
}

customThemeHighlight();

Language Registration

This feature allows you to register custom languages for syntax highlighting. The code sample demonstrates how to register a custom language and use it to highlight code.

const shiki = require('@shikijs/core');

async function registerLanguage() {
  const highlighter = await shiki.getHighlighter({ theme: 'nord' });
  await highlighter.loadLanguage({ id: 'myLang', scopeName: 'source.myLang', grammar: {/* grammar definition */} });
  const code = `myLang code here`;
  const highlightedCode = highlighter.codeToHtml(code, { lang: 'myLang' });
  console.log(highlightedCode);
}

registerLanguage();

Other packages similar to @shikijs/core

Readme

Source

@shikijs/core

The core functionality of Shiki, without any grammar of themes bundled.

It's the same as importing shiki/core.

Keywords

FAQs

Last updated on 21 Jun 2024

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc