🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

reactview

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reactview

quickly preview a react component in your browser

Source
npmnpm
Version
0.5.0
Version published
Weekly downloads
34
1600%
Maintainers
1
Weekly downloads
 
Created
Source

##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 <div className="test">this is sick</div>
		}
	}

No need to add React.render. CSS importing is also included. You need to specify export default on the component you want rendered.

##Contributing

To modify reactview, take a look at src/reactview.js. After making changes you'll need to do npm run build then npm install . -g if you're wanting to access it without doing node bin/reactview.js

###Recent Changes

0.5.0

  • v2.0 of the render placement loader. You must export default the component you want to be rendered.
  • fixed error message formatting when compiling your component

0.4.3

  • hot compile the js, you don't have to run reactview when you change your component, just refresh the page
  • updated dependencies

0.4.1

  • optionally pass in props to your component

0.4.0

  • Added babel compilation so that reactview plays nice with node (you should be using iojs :P)
  • added css loader

0.3.1

  • added babel stage 0 transforms

###Todos

  • add in hot reloading
  • passing props like --props {test: 'value'}
  • display error if component doesn't have a default export
  • whatever you send in a pull request

Keywords

react-component

FAQs

Package last updated on 15 May 2015

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