Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.