
Product
Introducing Scala and Kotlin Support in Socket
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
react-native-code-highlighter
Advanced tools
Code/Syntax highlighter for React Native. Inspired by react-native-syntax-highlighter, using react-syntax-highlighter
npm install react-native-code-highlighter react-syntax-highlighter
yarn add react-native-code-highlighter react-syntax-highlighter
Additional for typescript
npm install --save-dev @types/react-syntax-highlighter
yarn add -D @types/react-syntax-highlighter
Prop | Description | Type | Optional |
---|---|---|---|
hljsStyle | Highlight.js style imported from react-syntax-highlighter/dist/esm/styles/hljs | { [key: string]: React.CSSProperties } | false |
textStyle | Style for the text text components. Note: color property will be overridden | StyleProp<TextStyle> | true |
scrollViewProps | Props for the underlying scroll view. horizontal is ignored | ScrollViewProps | true |
containerStyle | Deprecated. containerStyle for the underlying ScrollView . Use scrollViewProps.contentContainerStyle instead | StyleProp<ViewStyle> | true |
react-syntax-highlighter Props | Props supported by react-syntax-highlighter. i.e. language |
import React from "react";
import { StyleSheet } from "react-native";
import CodeHighlighter from "react-native-code-highlighter";
import { atomOneDarkReasonable } from "react-syntax-highlighter/dist/esm/styles/hljs";
const CODE_STR = `var hello = "world"`;
export default function HighlightComponent() {
return (
<CodeHighlighter
hljsStyle={atomOneDarkReasonable}
containerStyle={styles.codeContainer}
textStyle={styles.text}
language="typescript"
>
{CODE_STR}
</CodeHighlighter>
);
}
const styles = StyleSheet.create({
codeContainer: {
padding: 16,
minWidth: "100%",
},
text: {
fontSize: 16,
},
});
CodeSandbox: https://codesandbox.io/s/react-native-code-highligher-knfsyx?file=/src/App.js
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
FAQs
test
The npm package react-native-code-highlighter receives a total of 1,152 weekly downloads. As such, react-native-code-highlighter popularity was classified as popular.
We found that react-native-code-highlighter demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.