
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
A simple, super fast scaffolding tool for Facebook's React JS framework. Within seconds you can create a full React project structure with stubbed out component files.
Good old npm:
npm install -g fbreactor
All configuration is driven off of reactorfile.js. This is kept in your project root directory and specifies settings like the source root for React framework.
fbreactor create reactorfile
This creates a standard reactorfile with your React source directory at /src.
fbreactor create reactorfile --basedir /app
Creates a reactorfile with /app as your Reactor root.
Use create framework to build the initial structure for React components.
fbreactor create framework
If you are using a standard reactorfile, this will result in the following directories being created:
If you have specified something different for you React root then src will be replaced with that.
This is comething you'll be doing for the life of the project. Whenever you need a completely new component in React, it requires creating many files and a ton of copy/paste/remove. Not anymore!
fbreactor create component --name MyThing
This will create a new Component, Store, Action, and Lib for your component called MyThing.
/** @jsx React.DOM */
var React = require('react'),
Fluxxor = require('fluxxor'),
FluxChildMixin = Fluxxor.FluxMixin(React),
StoreWatchMixin = Fluxxor.StoreWatchMixin;
var MyThingComponent = React.createClass({
mixins: [FluxChildMixin, StoreWatchMixin("MyThingStore")],
getInitialState: function() {
return {};
},
getStateFromFlux: function() {
return {
MyThingStore: flux.store("MyThingStore").getState()
};
},
render: function() {
return (
<div>Nothing here yet...</div>
);
}
});
module.exports = MyThingComponent;
FAQs
Generator for React
We found that fbreactor 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.