
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@action-land/component
Advanced tools
Action based functional components
npm i @action-land/component
import {Nil} from '@action-land/core'
import {COM} from '@action-land/component'
// component is created using the COM constructor function
const component = COM(
() => ({count: 0}),
(a, s) => ({...s, count: count + 1}),
() => Nil(),
(s: Smitten, m: {count: 0}, p: {color: string}) => 'Hello World' + m.count
)
// component can be transformed using map()
const crazyComponent = component.map(component =>
COM(
(...t) => Object.assign({crazy: true}, component.init(...t)),
component.update,
component.command,
component.view
)
)
A component is set of 4 pure functions —
init
: Creates the initial state of the component.update
: Is a reducer function.command
: Is a command function.view
: Takes in the state and other params and returns a virtual dom element.export interface Component<State, Params, Args extends any[], VNode> {
init(...t: Args): State
update<T>(action: Action<T>, state: State): State
command<T, R>(action: Action<T>, state: State): Action<R>
view(e: Hoe, m: State, p: Params): VNode
map<S, P, A, V>(
t: Component<State, Params, Args, VNode>
): Component<S, P, A, V>
}
State
.function init(...t: any[]): State
State
and returns a new State
.function update(action: Action, state: State): State
State
and returns a new Action.function command(action: Action, state: State): Action
Hoe
, State
and Params
.VNode
.VNode
can be anything implementation from [React], [snabbdom] etc.function view(e: Hoe, s: State, p: Params): VNode
FAQs
Basic interface for a component
We found that @action-land/component 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.