0.8.4 • Published 2 years ago
@logux/redux v0.8.4
Logux Redux
Logux is a new way to connect client and server. Instead of sending HTTP requests (e.g., AJAX and GraphQL) it synchronizes log of operations between client, server, and other clients.
- Guide, recipes, and API
- Issues and roadmap
- Projects inside Logux ecosystem
This repository contains Redux compatible API on top of Logux Client.
Install
npm install @logux/core @logux/client @logux/redux redux
Usage
See documentation for Logux API.
import { CrossTabClient, log } from '@logux/client'
import { createStoreCreator } from '@logux/redux'
let userId = document.querySelector('meta[name=user]').content
let token = document.querySelector('meta[name=token]').content
const client = new CrossTabClient({
subprotocol: '1.0.0',
server: 'wss://example.com:1337',
userId,
token
})
const createStore = createStoreCreator(client)
const store = createStore(reducers, preloadedState)
log(store.client)
export default store
import { Provider } from 'react-redux'
import ReactDOM from 'react-dom'
import store from './store'
import App from './App'
ReactDOM.render(
<Provider store={store}><App /></Provider>,
document.getElementById('root')
)
import { useSubscription } from '@logux/redux'
export const User = ({ id, name }) => {
const isSubscribing = useSubscription([`user/${ id }`])
if (isSubscribing) {
return <Loader />
} else {
return <h1>{ name }</h1>
}
}
0.8.4
2 years ago
0.8.3
3 years ago
0.8.2
4 years ago
0.8.1
4 years ago
0.8.0
4 years ago
0.7.1
5 years ago
0.7.0
5 years ago
0.6.2
5 years ago
0.6.1
5 years ago
0.6.0
5 years ago
0.5.2
5 years ago
0.5.1
5 years ago
0.5.0
5 years ago
0.4.2
6 years ago
0.4.1
6 years ago
0.4.0
6 years ago
0.3.2
6 years ago
0.3.1
6 years ago
0.3.0
6 years ago
0.2.9
6 years ago
0.2.8
6 years ago
0.2.7
6 years ago
0.2.6
6 years ago
0.2.5
6 years ago
0.2.4
6 years ago
0.2.3
6 years ago
0.2.2
6 years ago
0.2.1
6 years ago
0.2.0
6 years ago