
Security News
November CVEs Fell 25% YoY, Driven by Slowdowns at Major CNAs
November CVE publications fell 25% YoY even as 2025 totals rose, showing how a few major CNAs can swing “global” counts and skew perceived risk.
@fleur/fleur
Advanced tools
An Fully-typed Flux framework inspired by Fluxible. Runs on Node / Web.
(No dependence to React. see this if you want to use with React.)
// actions.ts (Action typings)
import { actions, action } from '@fleur/fleur'
export const CounterActions = actions('Counter', {
increase: action<{ amount: number }>(),
decrease: action<{ amount: number }>(),
}
// store.ts (Store)
import { reducerStore } from '@fleur/fleur'
import { CounterActions } from './actions.ts'
interface State {
count: number
}
export const CounterStore = reducerStore<State>('CounterStore', () => ({
count: 0
}))
.listen(CounterActions.increase, (draft, payload) => {
// immutable changing state with `immer.js`
draft.count += payload.amount
})
.listen(CounterActions.decrease, (draft, payload) => {
draft.count -= payload.amount
})
}
// operations.ts (Action Creator)
import { operations } from '@fleur/fleur'
import { CounterActions } from './actions.ts'
export const CounterOps = operations({
increase(ctx, amount: number) {
ctx.dispatch(CounterActions.increase, { amount })
},
decrease(ctx, amount: number) {
ctx.dispatch(CounterActions.decrease, { amount })
},
})
// selectors.ts
import { selector } from '@fleur/fleur'
import { CounterStore } from './store.ts'
export const selectCount = selector(getState => getState(CounterStore).count)
// app.ts
import Fleur, { withReduxDevTools } from '@fleur/fleur'
import { CounterStore } from './store.ts'
import { CounterOps } from './operations.ts'
import { selectCount } from './selectors.ts'
const app = new Fleur({
stores: [CounterStore],
})
;(async () => {
const ctx = app.createContext()
// Enable redux-devtools if you want
withReduxDevTools(ctx)
await ctx.executeOperation(CounterOps.increase, 10)
console.log(selectCount(ctx.getStore)) // => 10
await ctx.executeOperation(CounterOps.decrease, 20)
console.log(selectCount(ctx.getStore)) // => -10
})()
See @fleur/react.
FAQs
An Fully-typed Flux framework inspired by Fluxible. Runs on Node / Web.
We found that @fleur/fleur demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.

Security News
November CVE publications fell 25% YoY even as 2025 totals rose, showing how a few major CNAs can swing “global” counts and skew perceived risk.

Security News
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.

Research
/Security News
We spotted a wave of auto-generated “elf-*” npm packages published every two minutes from new accounts, with simple malware variants and early takedowns underway.