
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
The main idea of actives
to have ability to write pure logic
(PL) and pure views
(PV). (PL) <-> (PV).
Then we connect both (logic and views) for your goals and we get a real view.
It's only concept for now an example below.
There is an example with reactjs view.
There are some required packages.
import React from 'react';
import {render} from 'react-dom';
import {Box} from 'actives';
import connect from 'actives-react';
Pure logic and view.
// pure logic, it means that logic does not know about view
class Counter {
constructor() {
this.counter = 0;
}
go() {
setInterval(() => this.up(), 1000);
}
up() {
this.counter++;
}
get() {
return this.counter;
}
}
// pure view, view does not know about logic at all
let CounterView = ({counter, onUp}) => {
return <div><p>{counter}</p><button onClick={onUp}>up</button></div>
};
Make box and define state.
// let's make state for counter
let box = new Box;
// add counter to the box
box.add('counter', Counter);
// connect state to the counter
box.connect('counterState', 'counter')
.state(({counter}) => {
return {
counter: counter.get()
}
})
.actions(({counter}) => {
return {
onUp: () => counter.up()
};
});
Connect state/actions to the view and render.
// connect state with view, view should not know about real logic
let CounterWidget = connect(box.counterState, CounterView);
// render widget now it's connected to state. And it will react on changes.
render(<CounterWidget />, document.getElementById('app'));
You can manipulate counter
(logic instance). And it will present view.
// lets GO!
let counter = box.counter;
counter.go();
It's an example with the simplest counter to get an idea. example
It's an example with todo list. Follow to get more ideas example
Two apps - Web and Mobile Native apps with same codebase. It's an example with the simplest counter. To get ideas simply. example
FAQs
actives - pure logic (PL) - pure view (PV)
The npm package actives receives a total of 3 weekly downloads. As such, actives popularity was classified as not popular.
We found that actives 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.