Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Flux applications have a beautiful architecture but a ugly code. This project propose a transpiler write a better and simple code that generate it. additionally flux-easy facilities using of multiple references to Stores/Views.
$ npm install flux-easy
import FluxEasy from 'flux-easy'; // fake module that define Store and View fake classes
class STORE_NAME extends FluxEasy.Store {
constructor () {
this.prop1 = null; // Store state
this.prop2 = 0;
}
getProp1() {
return this.prop1; // You can you getState or add specific get methods
}
action1(p1,p2) { // automatic creation of dispatcher and callbacks for actions
this.prop1 = p1;
this.prop2 = p2;
this.emit('YourChange'); //write any name changes
}
}
class VIEW_NAME extends FluxEasy.View { // will define a React.Class
constructor(){
this.store_ref= STORE_NAME.createStoreReference(); // automatic reference to stores/views
this.prop3=''; // view state
this.store_ref.addChangeListenner('YourChange'); // simplification of listenners from this.emit('YourChange')
// in the store
}
render() {
var prop1=this.store_ref.getProp1(); // getting partial store state with specific method
var prop2=this.store_ref.getState().prop2; // get full store state with getState()
var prop3=this.state.prop3; // get view state, attention to valueLink automation
return (<div>
<div>prop1 {prop1}</div>
<div>prop2 {prop2}</div>
<div>prop3 {prop3}</div>
<input type="text" placeholder="prop3"
valueLink={this.state.prop3} /> //edit value in input update in this.state.prop3 automatic
<button onClick={this.dispatch_action}>Dispatch action1</button>
</div>
);
}
}
flux-easy src/file.jsx bin/file.jsx
Use automation tools like grunt, gulp, webpack...
See sample project at https://github.com/thr0w/flux-easy-loader-test
var dispatcher=new Flux.Dispatcher();
var view_ref = VIEW_NAME.createViewReference(dispatcher); // you just need call once
var View_Class = view_ref.Class;
React.render(<View_Class />, document.getElementById('app') );
FAQs
Transpiler for use flux with simplicity
The npm package flux-easy receives a total of 2 weekly downloads. As such, flux-easy popularity was classified as not popular.
We found that flux-easy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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 threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.