
Security News
Socket Releases Free Certified Patches for Critical vm2 Sandbox Escape
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.
##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.
How do I set what gets rendered?
You need to specify export default on the component you want rendered.
In 0.5.2, you can explicitly pass the component / class name you want
rendered: reactview component.jsx ComponentName.
Useful if you're importing components and there are multiple exports.
##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
###Todos
--props {test: 'value'}FAQs
compile and view react components (with hot reloading!)
The npm package reactview receives a total of 17 weekly downloads. As such, reactview popularity was classified as not popular.
We found that reactview demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.

Research
Five malicious NuGet packages impersonate Chinese .NET libraries to deploy a stealer targeting browser credentials, crypto wallets, SSH keys, and local files.

Security News
pnpm 11 turns on a 1-day Minimum Release Age and blocks exotic subdeps by default, adding safeguards against fast-moving supply chain attacks.