
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@action-land/core
Advanced tools
Core library for action.
npm i @action-land/core
Action
consists of two properties viz. type
and value
.action.type
is of type string
or number
.action.value
is of type any
. It could also be of type Action
An action is an object which contains two properties — type
and value
.
interface Action<T> {
type: string
value: T
}
A utility that helps in creating a new object of action type. The function is curried by default and provides type guarantee.
import {action} from '@action-land/core'
action('click', {x: 10, y: 20})
action('click')({x: 10, y: 20}) // curried version
A utility function that detects if the object is of Action
type.
import {isAction} from '@action-land/core'
isAction({}) // returns false
isAction(action('WWW', null)) // returns true
A default action that represents nothingness.
import {Nil} from '@action-land/core'
function logic(a: number) {
if (a > 10) return action('greater', a - 10)
if (a < 10) return action('lesser', 10 - a)
return Nil
}
A utility function that creates an Action
from a list of Action[]
.
import {List} from '@action-land/core'
const list = List(action('A', 1), action('B', 2))
A utility function that checks if the action is of list type
import {isList} from '@action-land/core'
const list = List(action('A', 1), action('B', 2))
isList(list) //true
A utility function that checks if the action is of Nil
import {isNil, Nil} from '@action-land/core'
isNil(Nil) // true
isNil({type: '@@NIL', value: {}}) // true
isNil({type: 'click', value: {}}) // false
FAQs
Typeclass for action
The npm package @action-land/core receives a total of 1,266 weekly downloads. As such, @action-land/core popularity was classified as popular.
We found that @action-land/core 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.