Socket
Socket
Sign inDemoInstall

prism-console

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    prism-console

Prism but outputs to the browser console


Version published
Weekly downloads
23
decreased by-25.81%
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 output in this image in the browser console:

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

const theme = generateTheme(...);

console.log(
  ...highlight(
    `import { generateTheme, highlight } from "prism-console"`,
    Prism.languages.javascript,
    theme
  )
);

console.log(
  ...highlight(
    `.token.deleted {
  color: red;
}`,
    Prism.languages.css,
    theme
  )
);

syntax highlighted code

API

generateTheme(stylesheet: string): Theme

stylesheet is the CSS source for the Prism theme.

highlight(code: string, grammar: Prism.Grammar, theme: Theme): string[]

code is the code to be highlighted.

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

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

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

Keywords

FAQs

Last updated on 04 Jan 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