Gathering detailed insights and metrics for @dynamic-selectors/with-reselect
Gathering detailed insights and metrics for @dynamic-selectors/with-reselect
Gathering detailed insights and metrics for @dynamic-selectors/with-reselect
Gathering detailed insights and metrics for @dynamic-selectors/with-reselect
Selectors with dynamic dependencies and params
npm install @dynamic-selectors/with-reselect
Typescript
Module System
Node Version
NPM Version
TypeScript (90.87%)
Shell (7.55%)
JavaScript (1.59%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
3 Stars
100 Commits
1 Watchers
4 Branches
1 Contributors
Updated on Sep 26, 2024
Latest Version
1.2.1
Package Id
@dynamic-selectors/with-reselect@1.2.1
Unpacked Size
37.55 kB
Size
9.88 kB
File Count
25
NPM Version
9.6.4
Node Version
20.1.0
Published on
May 06, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
2
Helper functions to make it easy to use Dynamic Selectors and Reselect together.
For more information or related packages, see the Dynamic Selectors workspace.
import {
reselectSelectorFromDynamic,
dynamicSelectorFromReselect,
wrapReselect,
} from '@dynamic-selectors/with-reselect';
Create a Reselect selector from any dynamic selector. You can specify the params to use with the dynamic selector, if it accepts params.
1const originalSelector = createDynamicSelector(/* dynamic-selector for use with reselect */); 2const newSelector = reselectSelectorFromDynamic(originalSelector);
Creates a normal dynamic selector from any Reselect selector (using createDynamicSelector
, by default).
If you're using a custom dynamic selector factory, you should use wrapReselect
instead.
1const originalSelector = createSelector(/* reselect selector for use with dynamic-selectors */); 2const newSelector = dynamicSelectorFromReselect(originalSelector);
Converts any Reselect selector into a function that you can pass to your own customized dynamic selector factory.
The default dynamicSelectorFromReselect
helper is just shorthand for createDynamicSelector(wrapSelector(selectorFn))
1const myCustomSelectorFactory = dynamicSelectorForState(/* custom options */); 2 3const originalSelector = createSelector(/* custom dynamic-selector for use with reselect */); 4const newSelector = myCustomSelectorFactory(wrapSelector(originalSelector));
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
8 existing vulnerabilities detected
Details
Reason
Found 0/21 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More