Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
State management with error handling and reactive cache done right.
Alternative standalone implementation of eigenmethod mol_atom.
Usage examples with reactive-di: example source, demo, todomvc benchmark
Install npm install --save lom_atom
import {mem} from 'lom_atom'
class Todo {
@mem title = ''
}
const todo = new Todo()
todo.title = '123'
import {mem} from 'lom_atom'
class Todo {
@mem set title(next: string) {
// test next
}
@mem get title(): string {
return 'default'
}
}
const todo = new Todo()
todo.title = '123'
One decorator for all cases.
class TodoList {
@mem todos = []
@mem get unfinishedTodos() {
return this.todos.filter((todo) => !todo.finished)
}
}
Like mobx, unfinishedTodos is updated automatically when a todo changed.
Lom atom memoized property can interact with upstream (server, etc). Each observable or computed property can be used in 4 cases: get, set, cache set, cache reset. Modifiers helps to produce and control side effects for making network requests.
import {mem} from 'lom_atom'
class TodoList {
@mem set todos(todos: Todo | Error) {
fetch({
url: '/todos',
method: 'POST',
body: JSON.stringify(todos)
})
.then((data) => mem.cache(this.todos = data))
.catch(error => mem.cache(this.todos = error))
console.log('set handler')
throw new mem.Wait()
}
@mem get todos(): Todos {
console.log('get handler')
fetch('/todos')
.then((data) => mem.cache(this.todos = data))
.catch(error => mem.cache(this.todos = error))
throw new mem.Wait()
}
@mem.manual get user(): IUser {
fetch('/user')
.then((data) => mem.cache(this.user = data))
.catch(error => mem.cache(this.user = error))
}
set user(next: IUser | Error) {}
@mem todosWithUser() {
return {todos: this.todos, user: this.user}
}
@mem todosWithUserParallel() {
return {todos: mem.async(this.todos), user: mem.async(this.user)}
}
}
const list = new TodoList()
this.todos
- get value, if cache is empty - invokes get todos
and actualize cache.this.todos = data
- set value, if cache empty - pass value to set todos() {}
and actualize cache.mem.cache(this.todos = data)
- set new value or error directly into cache (push).mem.cache(list.todosWithUser)
- deep reset cache for todosWithUser all its dependencies (todos) and notify all dependants about changes.@mem.manual get user() {...}
- exclude user from deep reset. mem.reset(list.todosWithUser)
resets todos but not user. If you want to reset user, use helper directly on user: mem.cache(list.user)
mem.async(this.todos)
- initiate parallel loading todos and user (wrap error in proxy, do not throw error if data are fetching).Basic dictionary support. First argument is an key of any type. See eigenmethod mol_mem.
class TodoList {
@mem.key todo(id: string, next?: Todo): Todo {
if (next === undefined) {
// get mode
return {}
}
return next
}
}
const list = new TodoList()
list.todo('1', {id: 1, title: 'Todo 1'}) // set todo
list.todo('1') // get todo
State updates are asynchronous, but sometime we need to do transactional synced updates via action helper:
import {action, mem} from 'lom_atom'
class Some {
@mem name = ''
@mem id = ''
@action set(id: string, name: string) {
this.id = id
this.name = name
}
}
const some = new Some()
// Transactionally changed in current tick:
action(() => {
some.name = 'test'
some.id = '123'
})
// or
some.set('123', 'test')
3.0.15 (2017-12-08)
<a name="3.0.14"></a>
FAQs
Alternative implementation of eigenmethod mol_atom state management library
The npm package lom_atom receives a total of 7 weekly downloads. As such, lom_atom popularity was classified as not popular.
We found that lom_atom 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.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.