New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-github-markdown

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-github-markdown

Github Markdown Editor & Viewer for React

latest
Source
npmnpm
Version
1.0.0-beta.4
Version published
Maintainers
2
Created
Source

React Github Markdown

A simple wrapper to easily add GitHub's markdown editor and viewer to your React applications.

MIT Latest Version on NPM NPM Downloads Github Stars

Installation

npm install react-github-markdown

Usage

import React from 'react';
import { MarkdownEditor, MarkdownViewer } from 'react-github-markdown';

const App = () => {
  const [markdown, setMarkdown] = React.useState('');

  return (
    <div>
      <MarkdownEditor
        value={markdown}
        onChange={setMarkdown}
      />
      <MarkdownViewer markdown={markdown} />
    </div>
  );
};

Credits

This project uses -

Keywords

react

FAQs

Package last updated on 12 Jul 2023

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