
Research
Security News
Malicious npm Packages Use Telegram to Exfiltrate BullX Credentials
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
reselect-tree
Advanced tools
Wrapper around reactjs's reselect library for creating trees of selectors.
Designed to allow selectors to be organized into separate namespaces easily, with the ability to identify dependencies between selectors in the tree.
Install with:
npm install --save reselect-tree
Then define a file selectors.js
:
import { createSelectorTree, createLeaf } from "reselect-tree";
const selectors = require("./dist/reselect-tree.js");
const createSelectorTree = selectors.createSelectorTree;
const createLeaf = selectors.createLeaf;
const select = createSelectorTree({
shop: {
taxPercent: state => state.shop.taxPercent
},
cart: {
items: state => state.cart.items,
subtotal: createLeaf(
['./items'],
(items) => items.reduce((acc, item) => acc + item.value, 0)
),
tax: createLeaf(
['/shop/taxPercent', './subtotal'],
(taxPercent, subtotal) => subtotal * (taxPercent / 100)
),
total: createLeaf(
['./subtotal', './tax'], (subtotal, tax) => ({ total: subtotal + tax })
)
}
});
let exampleState = {
shop: {
taxPercent: 8,
},
cart: {
items: [
{ name: 'apple', value: 1.20 },
{ name: 'orange', value: 0.95 },
]
}
}
console.log(select.cart.subtotal(exampleState)) // 2.15
console.log(select.cart.tax(exampleState)) // 0.172
console.log(select.cart.total(exampleState)) // { total: 2.322 }
You can also select non-leaf nodes, for structured representations:
console.log(select.cart(exampleState))
{ items:
[ { name: 'apple', value: 1.2 },
{ name: 'orange', value: 0.95 } ],
subtotal: 2.15,
tax: 0.172,
total: { total: 2.322 } }
You can override the default aggregation behavior by defining a custom child
_
. e.g.:
const select = createSelectorTree({
shop: {
taxPercent: state => state.shop.taxPercent
},
cart: {
_: createLeaf(
['./items', './total'],
(items, total) => ({ items, total })
),
items: state => state.cart.items,
subtotal: createLeaf(
['./items'],
(items) => items.reduce((acc, item) => acc + item.value, 0)
),
tax: createLeaf(
['/shop/taxPercent', './subtotal'],
(taxPercent, subtotal) => subtotal * (taxPercent / 100)
),
total: createLeaf(
['./subtotal', './tax'], (subtotal, tax) => ({ total: subtotal + tax })
)
}
});
This changes how select.cart
behaves, instead acting as select.cart._
:
console.log(select.cart(exampleState)); // { items:
// [ { name: 'apple', value: 1.2 },
// { name: 'orange', value: 0.95 } ],
// total: { total: 2.322 } }
console.log(select.cart._(exampleState)); // { items:
// [ { name: 'apple', value: 1.2 },
// { name: 'orange', value: 0.95 } ],
// total: { total: 2.322 } }
FAQs
Wrapper around reselect for creating selector trees
The npm package reselect-tree receives a total of 9,318 weekly downloads. As such, reselect-tree popularity was classified as popular.
We found that reselect-tree demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 16 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 uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.
Security News
AI-generated slop reports are making bug bounty triage harder, wasting maintainer time, and straining trust in vulnerability disclosure programs.