1.0.17 • Published 2 years ago

react-log-file-viewer v1.0.17

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

React Log File Viewer

A React component for viewing large text files.

Installation

You can install the React Log File Viewer package using npm or yarn.

npm install react-log-file-viewer


or

yarn add react-log-file-viewer

Usage

Import the ReactLogFileViewer component and use it in your React application.

import ReactLogFileViewer from 'react-log-file-viewer';

function App() {
  return (
    <div>
      <ReactLogFileViewer filePath="path/file.txt" />
    </div>
  );
}

Props

The ReactLogFileViewer component accepts the following props:

  • filePath (string, required): The path to the text file you want to view.
  • itemSize (number, default: 40): Determines the number of lines visible in the view without scrolling.
  • lineHeight (number, default: 20): Specifies the height of each line in pixels.
  • width (string, default: '800px'): Sets the width of the viewer container.

Examples

Here's an example of using the React Log File Viewer component:

import ReactLogFileViewer from 'react-log-file-viewer';

function App() {
  return (
    <div>
      <ReactLogFileViewer filePath="path/file.txt" itemSize={30} lineHeight={25} width="1000px" />
    </div>
  );
}

License

This project is licensed under the MIT License. See the LICENSE file for details.

Repository

The source code for the React Log File Viewer component is hosted on GitHub: https://github.com/TestsigmaInc/react-log-file-viewer

Issues

If you encounter any issues or have any suggestions for improvements, please open an issue on the GitHub repository.

1.0.17

2 years ago

1.0.16

2 years ago

1.0.15

2 years ago

1.0.14

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago