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.
@frui.ts/helpers
Advanced tools
@frui.ts/helpers
Helper functions for various use cases.
@bound
A function decorator that binds context of the function to the parent class. This is useful for direct use of the function as event handler <Xxx onClick={vm.decoratedFunction} />
so that new anonymous functions are not allocated for each render (compare to <Xxx onClick={() => vm.decoratedFunction()} />
).
// in view model
class MyViewModel {
@bound someAction() {
// you can safely use 'this' here
}
}
// in view
<button onClick={vm.someAction} />
createMap
Helper function for easily creating Maps.
const items = [
{ id: 1, name: "One" },
{ id: 2, name: "Two" },
{ id: 3, name: "Three" },
];
// map of items by key
const itemsById = createMap(items, x => x.id); // Map<number, { id, name }>
// map of values by key
const namesById = createMap(items, x => x.id, x => x.name); // Map<number, string>
nameof
Syntactic sugar for creating strings that are also a key of a type.
this.pagingFilter.sortColumn = nameof<User>("login"); // the same as ="login", but checked on compile time that the class 'User' actually has a 'login' field
ManualPromise
TODO
0.17.0
ScreenBase.name
is now a property with a default getter implementation reading the value from the nameValue
field. To adapt to this change, you should replace this.name = xxx
with this.nameValue = xxx
.UrlNavigationAdapter
to HashNavigationAdapter
and added PathNavigationAdapter
to @frui.ts/screens.FAQs
Frui.ts helper functions
The npm package @frui.ts/helpers receives a total of 582 weekly downloads. As such, @frui.ts/helpers popularity was classified as not popular.
We found that @frui.ts/helpers demonstrated a healthy version release cadence and project activity because the last version was released less than 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.