![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Reactive main-loop for the mercury frontend framework
RxJS and mercury are pluggable and not in the dependency tree of this package
'use strict';
var document = require('global/document');
var hgrx = require('mercury-rx');
var hg = require('mercury');
var h = require('mercury').h;
var Rx = require('rx');
var clicks = new Rx.Subject();
clicks.onEvent = clicks.onNext.bind(clicks);
function App() {
return clicks.startWith(0)
.scan(function incrementCounter(state) {
return state + 1;
});
}
App.render = function render(state) {
return h('div.counter', [
'The state ', h('code', 'clickCount'),
' has value: ' + state + '.', h('input.button', {
type: 'button',
value: 'Click me!',
'ev-click': hg.send(clicks.onEvent)
})
]);
};
hgrx.app(hg, document.body, App(), App.render);
'use strict';
var document = require('global/document');
var hgrx = require('mercury-rx');
var hg = require('mercury');
var h = require('mercury').h;
var Rx = require('rx');
var extend = require('xtend');
function App() {
var clicks = new Rx.Subject();
return clicks.startWith({
value: 0,
channels: hgrx.subjectChannels({
clicks: clicks
})
}).scan(function incrementCounter(state) {
var newState = extend(state);
newState.value = newState.value + 1;
return newState;
});
}
App.render = function render(state) {
return h('div.counter', [
'The state ', h('code', 'clickCount'),
' has value: ' + state.value + '.', h('input.button', {
type: 'button',
value: 'Click me!',
'ev-click': hg.send(state.channels.clicks)
})
]);
};
hgrx.app(hg, document.body, App(), App.render);
npm install mercury-rx
function app(
hg: Mercury,
elem: HTMLElement,
state: Observable<any>,
render: (state: any) => VNode,
opts?: any
) : Disposable;
// `channels` is an object like
// { onclick: new Rx.Subject() }
function subjectChannels(channels: any) : any;
This is totally possible. Just implement onNext(value: any)
for subjects
inside subjectChannels
. And implement
subscribe(onNext: (value: any) => void)
for the observable of app
.
FAQs
Reactive main-loop for the mercury frontend framework
We found that mercury-rx 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
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.