Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.