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.
Easy state management for React, inspired by Redux and ember-concurrency.
Features:
isLoading
bookkeeping)Design goals:
Define your application state and initialize Tube's task
and connect
utilities:
// src/store.tsx
import initalize from "@chnn/tube"
interface AppState {
count: number
}
const initialState: AppState = { count: 0 }
export const { task, connect } = initialize<AppState>(initialState)
Then connect components to your application state using task
and connect
:
// src/counter.tsx
import * as React from 'react'
import {TaskProp} from '@chnn/tube'
import * as api from "./api"
import { AppState, connect, task } from "./store"
interface Props {
count: number
onIncrement: TaskProp
}
const Counter: React.SFC<Props> = ({ count, onIncrement }) => (
<div className="counter">
<div className="value">
Value: {onIncrement.isRunning ? <div className="loader" /> : count}
</div>
<button onClick={onIncrement}>+ Add 1</button>
</div>
)
const increment = task(function*(getState) {
const x = yield api.getCount(1) // Returns 1 after one second
return { count: getState().count + x }
}).restartable()
const mapStateToProps = (state: AppState) => ({
count: state.count
})
const mapTasksToProps = {
onIncrement: increment
}
export default connect(
mapStateToProps,
mapTasksToProps,
Counter
)
You can run this example yourself.
FAQs
Easy state management for React apps
The npm package @chnn/tube receives a total of 0 weekly downloads. As such, @chnn/tube popularity was classified as not popular.
We found that @chnn/tube 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.