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.
Simple state and logic management library for modern React apps.
$ yarn add tinysaga
Comes with TypeScript typings out of the box, as well as ESM support and tree shaking.
Tinysaga is the no-frills state management solution for modern React apps. Users of Redux, React Redux, and Redux-Saga will be familiar with Tinysaga's constructs and ideas.
Out of the box, Tinysaga includes the following pieces:
Store
class which allows the user to update state and subscribe to changes. Its view-facing API is identical to that of Redux.<Provider>
and familiar useDispatch()
and useSelector()
hooks.Channel
and put()
/on()
patterns.Redux-Saga is a great library which allows applications to manage the complex state updates and side effects that happen in many React-Redux applications. It is a crucial part of the current frontend software stack.
However, the library itself is quite complex, which can cause problems in the following ways:
yield
and yield*
, or why you would want to yield take
inside of a while (true)
loop.Tinysaga supports most of the common put()
and on()
workflows, along with take()
and takeAdvanced()
sugar, without necessitating generators through your codebase.
This allows the programmer to implement his or her logic through the tried-and-true event bus architecture, with the help of well-understood plain JavaScript utilities like Lodash for debouncing, throttling, and cancellation, without opening your organization up to the long-term tooling and execution risk that comes with newer technologies like generators.
MIT
FAQs
Simple state and logic management library for modern React apps.
We found that tinysaga 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
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.