react-syntax-highlighter vs prism-react-renderer vs react-highlight vs react-codemirror
React Syntax Highlighting Libraries Comparison
1 Year
react-syntax-highlighterprism-react-rendererreact-highlightreact-codemirrorSimilar Packages:
What's React Syntax Highlighting Libraries?

Syntax highlighting libraries for React provide developers with tools to display code snippets in a visually appealing and readable manner. These libraries enhance the user experience by improving code readability and comprehension, often supporting various programming languages and themes. They are essential for applications that involve code editing, documentation, or any context where code snippets need to be presented clearly and attractively.

Package Weekly Downloads Trend
Github Stars Ranking
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
react-syntax-highlighter2,247,6024,2672.21 MB1444 months agoMIT
prism-react-renderer1,231,8651,912734 kB83 months agoMIT
react-highlight58,42576818.4 kB29-MIT
react-codemirror28,6281,560-688 years agoMIT
Feature Comparison: react-syntax-highlighter vs prism-react-renderer vs react-highlight vs react-codemirror

Customization

  • react-syntax-highlighter:

    React-syntax-highlighter supports multiple themes and allows for easy customization of styles. Developers can switch themes dynamically and apply custom styles to specific code blocks, providing a good balance between flexibility and ease of use.

  • prism-react-renderer:

    Prism-react-renderer offers extensive customization options, allowing developers to define their own themes and styles. It supports dynamic theming, enabling different styles based on user preferences or application states, making it highly adaptable for various use cases.

  • react-highlight:

    React-highlight is designed for simplicity and ease of use, with limited customization options. It allows basic styling through CSS but does not support extensive theming or configuration, making it less flexible for complex requirements.

  • react-codemirror:

    React-codemirror provides a rich set of configuration options for customizing the editor's behavior, including key bindings, themes, and language modes. This makes it a powerful choice for applications that require a tailored code editing experience.

Integration

  • react-syntax-highlighter:

    React-syntax-highlighter can be easily integrated into React applications, with straightforward usage patterns. It supports both inline and block code highlighting, making it versatile for different presentation needs.

  • prism-react-renderer:

    Prism-react-renderer integrates smoothly with React components, making it easy to include syntax highlighting in any part of a React application. Its component-based architecture allows for straightforward usage within JSX.

  • react-highlight:

    React-highlight is simple to integrate, requiring minimal setup to display highlighted code snippets. It is ideal for projects that need quick and easy syntax highlighting without complex configurations.

  • react-codemirror:

    React-codemirror is specifically designed as a React wrapper for the CodeMirror editor, making it easy to integrate into React applications. It provides a familiar API for React developers and supports various features of CodeMirror seamlessly.

Performance

  • react-syntax-highlighter:

    React-syntax-highlighter is designed to be performant, but the complexity of themes and styles can affect rendering speed. It is important to optimize usage for large code blocks to maintain performance.

  • prism-react-renderer:

    Prism-react-renderer is lightweight and optimized for performance, ensuring that syntax highlighting does not significantly impact rendering times. It is suitable for applications that require efficient rendering of large code snippets.

  • react-highlight:

    React-highlight is lightweight and performs well for static code snippets, making it suitable for applications that display code without the need for interactivity or frequent updates.

  • react-codemirror:

    React-codemirror may have performance overhead due to its comprehensive feature set, but it is optimized for handling large files and complex editing scenarios. It is best for applications where interactive code editing is a priority.

Learning Curve

  • react-syntax-highlighter:

    React-syntax-highlighter has a moderate learning curve, as it offers various customization options and themes. However, its straightforward API helps developers get started quickly.

  • prism-react-renderer:

    Prism-react-renderer has a gentle learning curve, especially for developers familiar with React. Its component-based approach makes it easy to understand and implement for basic syntax highlighting needs.

  • react-highlight:

    React-highlight is very easy to learn and implement, making it ideal for developers who need quick syntax highlighting without diving into complex configurations.

  • react-codemirror:

    React-codemirror has a steeper learning curve due to its extensive features and configuration options. Developers may need to invest time in understanding the CodeMirror API to fully utilize its capabilities.

Community and Support

  • react-syntax-highlighter:

    React-syntax-highlighter has a robust community and extensive documentation, making it easy for developers to find solutions and examples for common use cases.

  • prism-react-renderer:

    Prism-react-renderer has a growing community and is built on the popular Prism.js library, ensuring good documentation and support from the community.

  • react-highlight:

    React-highlight has a smaller community, but it is straightforward enough that developers can easily find help through documentation and examples.

  • react-codemirror:

    React-codemirror benefits from the large CodeMirror community, providing extensive resources, examples, and support for developers.

How to Choose: react-syntax-highlighter vs prism-react-renderer vs react-highlight vs react-codemirror
  • react-syntax-highlighter:

    Choose react-syntax-highlighter if you want a versatile library that supports multiple themes and languages, along with the ability to customize styles easily. It is great for applications that require both static code display and a variety of styling options.

  • prism-react-renderer:

    Choose prism-react-renderer if you need a lightweight, customizable syntax highlighter that integrates seamlessly with React components and supports a wide range of languages and themes. It is particularly beneficial for applications that require dynamic code rendering and theming.

  • react-highlight:

    Select react-highlight for a simple and straightforward syntax highlighting solution that is easy to set up and use. It is suitable for projects that need basic highlighting without the overhead of a full editor or extensive configuration.

  • react-codemirror:

    Opt for react-codemirror if you require a full-featured code editor with syntax highlighting capabilities. It is ideal for applications that need an interactive code editing experience, complete with features like autocompletion, linting, and multiple language support.

README for react-syntax-highlighter

React Syntax Highlighter

Actions Status npm

Syntax highlighting component for React using the seriously super amazing lowlight and refractor by wooorm

Check out a small demo here and see the component in action highlighting the generated test code here.

For React Native you can use react-native-syntax-highlighter

Install

npm install react-syntax-highlighter --save

Why This One?

There are other syntax highlighters for React out there so why use this one? The biggest reason is that all the others rely on triggering calls in componentDidMount and componentDidUpdate to highlight the code block and then insert it in the render function using dangerouslySetInnerHTML or just manually altering the DOM with native javascript. This utilizes a syntax tree to dynamically build the virtual dom which allows for updating only the changing DOM instead of completely overwriting it on any change, and because of this it is also using more idiomatic React and allows the use of pure function components brought into React as of 0.14.

Javascript Styles!

One of the biggest pain points for me trying to find a syntax highlighter for my own projects was the need to put a stylesheet tag on my page. I wanted to provide out of the box code styling with my modules without requiring awkward inclusion of another libs stylesheets. The styles in this module are all javascript based, and all styles supported by highlight.js have been ported!

I do realize that javascript styles are not for everyone, so you can optionally choose to use css based styles with classNames added to elements by setting the prop useInlineStyles to false (it defaults to true).

Use

props

  • language - the language to highlight code in. Available options here for hljs and here for prism. (pass text to just render plain monospaced text)
  • style - style object required from styles/hljs or styles/prism directory depending on whether or not you are importing from react-syntax-highlighter or react-syntax-highlighter/prism directory here for hljs. and here for prism. import { style } from 'react-syntax-highlighter/dist/esm/styles/{hljs|prism}' . Will use default if style is not included.
  • children - the code to highlight.
  • customStyle - prop that will be combined with the top level style on the pre tag, styles here will overwrite earlier styles.
  • codeTagProps - props that will be spread into the <code> tag that is the direct parent of the highlighted code elements. Useful for styling/assigning classNames.
  • useInlineStyles - if this prop is passed in as false, react syntax highlighter will not add style objects to elements, and will instead append classNames. You can then style the code block by using one of the CSS files provided by highlight.js.
  • showLineNumbers - if this is enabled line numbers will be shown next to the code block.
  • showInlineLineNumbers - if this is enabled in conjunction with showLineNumbers, line numbers will be rendered into each line, which allows line numbers to display properly when using renderers such as react-syntax-highlighter-virtualized-renderer. (This prop will have no effect if showLineNumbers is false.)
  • startingLineNumber - if showLineNumbers is enabled the line numbering will start from here.
  • lineNumberContainerStyle - the line numbers container default to appearing to the left with 10px of right padding. You can use this to override those styles.
  • lineNumberStyle - inline style to be passed to the span wrapping each number. Can be either an object or a function that receives current line number as argument and returns style object.
  • wrapLines - a boolean value that determines whether or not each line of code should be wrapped in a parent element. defaults to false, when false one can not take action on an element on the line level. You can see an example of what this enables here
  • wrapLongLines - boolean to specify whether to style the <code> block with white-space: pre-wrap or white-space: pre. Demo
  • lineProps - props to be passed to the span wrapping each line if wrapLines is true. Can be either an object or a function that receives current line number as argument and returns props object.
  • renderer - an optional custom renderer for rendering lines of code. See here for an example.
  • PreTag - the element or custom react component to use in place of the default pre tag, the outermost tag of the component (useful for custom renderer not targeting DOM).
  • CodeTag - the element or custom react component to use in place of the default code tag, the second tag of the component tree (useful for custom renderer not targeting DOM).
  • spread props pass arbitrary props to pre tag wrapping code.
import SyntaxHighlighter from 'react-syntax-highlighter';
import { docco } from 'react-syntax-highlighter/dist/esm/styles/hljs';
const Component = () => {
  const codeString = '(num) => num + 1';
  return (
    <SyntaxHighlighter language="javascript" style={docco}>
      {codeString}
    </SyntaxHighlighter>
  );
};

Prism

Using refractor we can use an ast built on languages from Prism.js instead of highlight.js. This is beneficial especially when highlighting jsx, a problem long unsolved by this module. The semantics of use are basically the same although a light mode is not yet supported (though is coming in the future). You can see a demo(with jsx) using Prism(refractor) here.

import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter';
import { dark } from 'react-syntax-highlighter/dist/esm/styles/prism';
const Component = () => {
  const codeString = '(num) => num + 1';
  return (
    <SyntaxHighlighter language="javascript" style={dark}>
      {codeString}
    </SyntaxHighlighter>
  );
};

Light Build

React Syntax Highlighter used in the way described above can have a fairly large footprint. For those that desire more control over what exactly they need, there is an option to import a light build. If you choose to use this you will need to specifically import desired languages and register them using the registerLanguage export from the light build. There is also no default style provided.

import { Light as SyntaxHighlighter } from 'react-syntax-highlighter';
import js from 'react-syntax-highlighter/dist/esm/languages/hljs/javascript';
import docco from 'react-syntax-highlighter/dist/esm/styles/hljs/docco';

SyntaxHighlighter.registerLanguage('javascript', js);

You can require PrismLight from react-syntax-highlighter to use the prism light build instead of the standard light build.

import { PrismLight as SyntaxHighlighter } from 'react-syntax-highlighter';
import jsx from 'react-syntax-highlighter/dist/esm/languages/prism/jsx';
import prism from 'react-syntax-highlighter/dist/esm/styles/prism/prism';

SyntaxHighlighter.registerLanguage('jsx', jsx);

Async Build

For optimal bundle size for rendering ASAP, there's a async version of prism light & light. This versions requires you to use a bundler that supports the dynamic import syntax, like webpack. This will defer loading of refractor (17kb gzipped) & the languages, while code splits are loaded the code will show with line numbers but without highlighting.

Prism version:

import { PrismAsyncLight as SyntaxHighlighter } from 'react-syntax-highlighter';

Highlight version

import { LightAsync as SyntaxHighlighter } from 'react-syntax-highlighter';

Supported languages

Access via the supportedLanguages static field.

SyntaxHighlighter.supportedLanguages;

Add support for another language

To add another language, use the light build and registerLanguage. For example to add cURL with highlight.js:

import { Light as LightSyntaxHighlighter } from 'react-syntax-highlighter';
import curl from 'highlightjs-curl';

Then you can do:

LightSyntaxHighlighter.registerLanguage('curl', curl);

Built with React Syntax Highlighter

  • mdx-deck - MDX-based presentation decks
  • codecrumbs - Learn, design or document codebase by putting breadcrumbs in source code. Live updates, multi-language support, and easy sharing.
  • Spectacle Editor - An Electron based app for creating, editing, saving, and publishing Spectacle presentations. With integrated Plotly support.
  • Superset - Superset is a data exploration platform designed to be visual, intuitive, and interactive.
  • Daydream - A chrome extension to record your actions into a nightmare script
  • CodeDoc - Electron based application build with React for creating project documentations
  • React Component Demo - A React Component To make live editable demos of other React Components.
  • Redux Test Recorder - a redux middleware to automatically generate tests for reducers through ui interaction. Syntax highlighter used by react plugin.
  • GitPoint - GitHub for iOS. Built with React Native. (built using react-native-syntax-highlighter)
  • Yoga Layout Playground - generate code for yoga layout in multiple languages
  • Kibana - browser-based analytics and search dashboard for Elasticsearch.
  • Golangci Web
  • Storybook Official Addons
  • Microsoft Fast DNA
  • Alibaba Ice
  • Uber BaseUI Docs
  • React Select Docs
  • Auto-layout - use flex layout
  • npmview - A web application to view npm package files
  • Static Forms - Free HTML forms for your static websites.
  • React DemoTab - A React component to easily create demos of other components
  • codeprinter - Print out code easily
  • Neumorphism - CSS code generator for Soft UI/Neumorphism shadows
  • grape-ui - Component library using styled-system and other open source components.
  • Good Arduino Code - A curated library of Arduino Coding examples
  • marmota.app - A desktop app to create simple markdown presentations
  • Markdown Sticky Notes - A web extension to create Markdown sticky notes in web pages.

If your project uses react-syntax-highlighter please send a pr to add!

License

MIT

Contributing

You'll need Node 16.x installed & active on your system to build this package.

npm i
npm run dev