Andrey Sitnik

Results 227 issues of Andrey Sitnik

When we will finish Logux Data we will need a CRDT implementation for text. In will be also nice to have an integration with editor widgets.

type: feature
part: node
part: js

```js import { loguxSubscribe } from '@logux/actions' log.type(loguxSubscribe, action => { action // TypeScript will think that it is LoguxSubscribeAction }) ``` `Server#type` from `@logux/server` types and implementation can be...

part: core
type: feature

Right now we group [API](https://logux.io/node-api/) by classes, function, variables. It makes it hard to navigate in API and does not allow to learn the project by API pages. @euaaaio suggested...

part: docs
type: refactoring

We can improve performance by compressing `logux/*` actions in WS protocol: ```js ['sync', added, { type: 'logux/processed', id: "1564508138460 380:R7BNGAP5:px3-J3oc 0" }, { id, added }, …] ↓ ['sync', added,...

part: core
type: refactoring

We need to have a proper solution when two browser tabs subscribe to the same content. Case 1: 1. We open post 1 in tab A. 2. Client in tab...

type: feature
part: js

[`for await of`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for-await...of) is a nice syntax sugar and can be added to `Log`: ```js for await (let [action, meta] of node.log) { } ``` ```js for await (let [action,...

part: core
type: feature

We need to explain how to split big business logic with Logux State

part: docs
type: feature

- [ ] Add Scaling recipe - [ ] How to guide - [ ] Best practices - [ ] Add Monitoring recipe - [ ] How to guide -...

part: docs
type: feature

The cloud service will allow users to start using Logux without setting up a new server. We should start from a proxy mode to their own back-end. But then it...

type: feature

- [ ] React - [ ] Vue - [ ] Node.js - [ ] Django I think I will create good examples only when I will have Logux Data...

part: docs