Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@misk/simpleredux
Advanced tools
Using Redux can be simple.
@misk/SimpleRedux
includes all the Redux parts necessary for forms, network requests, and other interactive components. Don't write Redux boilerplate for basic interactivity again.
$ npm install @misk/simpleredux
Allows for single-key cached selection from Redux state
Most directly equivalent to deprecated simpleSelect
// OLD
const field1 = simpleSelect(props.simpleForm, "Dino::Field1", "data")
const tagsField = simpleSelect(props.simpleForm, "Dino::Tags", "data", simpleType.array)
// NEW
const field1 = simpleSelectorGet(props.simpleForm, ["Dino::Field1", "data"])
const tagsField = simpleSelectorGet(props.simpleForm, ["Dino::Tags", "data"], [])
simpleSelectorGet
subState
: same as parameter 1 for simpleSelect
. Example: props.simpleForm
, props.simpleNetwork
path
: allows any length path to an object key you'd like to access. This combines parameter 2 and 3 of simpleSelect
.
"Dino::Name.data", ["Dino::Price", "data"]
defaultValue?
is optional and allows setting of a default value if the requested path is not found.
false, [], {}
[]
in the case of no elements, not undefined
.Allows for multi-key cached selection from Redux state
// OLD
const fields = [
"Name",
"Price",
"Itemized Receipt",
"CheckAlice",
"CheckBob",
"CheckEve",
"CheckMallory",
"CheckTrent",
"Meal",
"Tags"
].map((f: string) => `Dino::${f}`)
const fieldsData = fields
.map((key: string) => {
const value = simpleSelect(props.simpleForm, key, "data")
return { [key]: value }
})
.reduce((prev, current) => ({...prev, ...current}), {})
// New
const fields = [
"Name",
"Price",
"Itemized Receipt",
"CheckAlice",
"CheckBob",
"CheckEve",
"CheckMallory",
"CheckTrent",
"Meal",
"Tags"
].map((f: string) => `Dino::${f}.data`)
const fieldsData = simpleSelectorPick(props.simpleForm, fields)
simpleSelectorPick
subState
: same as parameter 1 for simpleSelect
.
props.simpleForm
, props.simpleNetwork
paths
: array of paths of keys to return from object.
["Dino::Name.data", "Dino::Price.data"]
Dispatched actions can include an options object that has two very powerful keys:
mergeSaga
failureSaga
These are Redux sagas that are run on merge (success) or failure and allow for an additional async block of computation that include other network calls, seeding to many fields parts of the network response data, and anything else.
Both mergeSaga
and failureSaga
follow the same generic Redux Saga API. Consider looking at the src/saga.ts
or src/utilities/mergeSaga.ts
code to find examples of sagas already part of @misk/simpleredux
.
A standardized set of form and input handler Redux-Sagas parts (actions, dispatcher, handlers, sagas, reducers, state interface)
A standardized set of Axios based request Redux-Sagas parts (actions, dispatcher, handlers, sagas, reducers, state interface)
FAQs
Misk-Web SimpleRedux
The npm package @misk/simpleredux receives a total of 380 weekly downloads. As such, @misk/simpleredux popularity was classified as not popular.
We found that @misk/simpleredux demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.