# reactview **Repository Path**: mirrors_gaearon/reactview ## Basic Information - **Project Name**: reactview - **Description**: reactview lets you instantly view (and hot reload) any react component in your browser - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ##ReactView ##Install npm install -g reactview ###Usage This is the perfect tool for prototyping React components. Instead of setting up webpack to convert ES6 features or setup a server, it's as easy as: reactview component.jsx It'll automagically compile it using webpack and babel, then start a server and open your browser. Optionally, you can specify the port as the second argument: `reactview component.jsx 8000` It will also read json from stdin and pass them in as component props, eg: cat props.json | reactview example.jsx ###Example The example component looks like: import React from 'react' import Test from './test.css' export default class Woah extends React.Component{ render(){ return