react-code-differ
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

react-code-differ

本组件可用于代码差异的查看, 由于是 react 编写的,仅支持 react 版本

组件文档地址

先支持两种使用方式:

  1. 本地文件引入
  2. github 线上 diff 地址引入

安装

npm i react-code-differ

本地文件引入

import { CodeDiff } from "react-code-differ";
import diffText from './diffText'

export const MyComponent = (args) => {
  return (
    <CodeDiff type={"local"} path={diffText} />
  );
};

github 线上 diff 地址引入

import { CodeDiff } from "react-code-differ";

export const MyComponent = (args) => {
  const path = "https://api.github.com/repos/rtfpessoa/diff2html/pulls/106"
  return (
    <CodeDiff type={"github"} path={path} />
  );
};

Package Sidebar

Install

npm i react-code-differ

Weekly Downloads

2

Version

1.0.3

License

MIT

Unpacked Size

5.89 kB

Total Files

3

Last publish

Collaborators

  • suedar