Socket
Socket
Sign inDemoInstall

prism-console

Package Overview
Dependencies
14
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    prism-console

Output syntax highlighted code to the console


Version published
Weekly downloads
51
increased by155%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

prism-console

Prism but outputs to the browser console.

prism-console uses the syntax highlighter Prism to highlight source code, and output this highlighted code to the browser console.

Example

The following code, when run in a browser, displays the console:

import { generateTheme, highlight } from "prism-console";
import Prismjs from "prismjs";

const theme = generateTheme(...);

const code = `var x = console.log("test");`;

console.log(...highlight(code, Prismjs.languages.javascript, theme));

syntax highlighted code

in the terminal

syntax highlighted code

in the browser

API

generateTheme(stylesheet: string): Theme

stylesheet is the CSS source for the Prism theme.

highlight(code: string, grammar: Prismjs.Grammar, theme: Theme, platform?: Platform): string[]

code is the code to be highlighted.

grammar A Prism language grammar, typically taken from Prismjs.languages.

theme is the theme to highlight the code with, generated by generateTheme.

platform is an instance of the enum Platform, which is either Browser or Node. This is auto-detected if not passed.

highlight returns an array of arguments to be passed to any function in the console.log family.

Keywords

FAQs

Last updated on 07 Apr 2020

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc