![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
cycle-maquette
Advanced tools
Alternative DOM driver utilizing the maquette library
$ npm install cycle-maquette
import { makeDOMDriver } from "cycle-maquette";
import { makeHTMLDriver } from "cycle-maquette";
Shorcuts to maquette/h
and hyperscript-helpers
import { h, div, span, h4 } from "cycle-maquette";
A testing utility which aids in creating a queryable collection of Observables. Call mockDOMSource giving it an object specifying selectors, eventTypes and their Observables, and get as output an object following the same format as the DOM Driver's source.
Example:
const userEvents = mockDOMSource({
'.foo': {
'click': Rx.Observable.just({target: {}}),
'mouseover': Rx.Observable.just({target: {}})
},
'.bar': {
'scroll': Rx.Observable.just({target: {}})
}
});
// Usage
const click$ = userEvents.select('.foo').events('click');
Arguments:
mockedSelectors :: Object an object where keys are selector strings and values are objects. Those nested objects have eventType strings as keys and values are Observables you created. Return:
(Object) fake DOM source object, containing a function select() which can be used just like the DOM Driver's source. Call select(selector).events(eventType) on the source object to get the Observable you defined in the input of mockDOMSource.
FAQs
Maquette Driver for Cycle.js
The npm package cycle-maquette receives a total of 3 weekly downloads. As such, cycle-maquette popularity was classified as not popular.
We found that cycle-maquette 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
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.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.