
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
cycle-history
Advanced tools
A cycle.js driver built on history. A part of your overall routing solution.
To finish the routing cycle I highly recommend switch-path, or you can provide your own.
npm install cycle-history
For more concrete examples on usage, please check out cycle-starter
Define with your other drivers
//import
import {makeHistory, filterLinks} from 'cycle-history';
import switchPath from 'switch-path';
// Defined with your drivers
History: makeHistoryDriver({
hash: false, // default, true if your browser doesn't support History API
queries: true // default, toggle QuerySupport
basename: '' // default, sets up BasenameSupport
// all other history Options
})
// Use in Main - shown in conjunction with switch-path
function main({DOM, History}) {
const pathValue$ = History.map(location => { // History Location Object
let {path, value} = switchPath(location.pathname, routes)
return [path, value]
});
const url$ = DOM.select('a').events('click').filter(filterLinks)
// filterLinks will make sure this is a path we want to handle
// Best to provide more precise selectors to avoid this need.
return {
...
History: url$
}
}
Following @staltz isomorphic example
// server.js
// Lines 27-37 become
function wrapAppResultWithBoilerplate(appFn, bundle$) {
return function wrappedAppFn(ext) {
let requests = appFn(ext);
let wrappedVTree$ = Rx.Observable.combineLatest(requests.DOM, bundle$,
wrapVTreeWithHTMLBoilerplate
);
return {
DOM: wrappedVTree$,
History: requests.History
};
};
}
// Lines 71-74 become
let [requests, responses] = Cycle.run(wrappedAppFn, {
DOM: makeHTMLDriver(),
History: makeServerHistoryDriver({
pathname: req.url
})
});
makeServerHistoryDriver() accepts all options allowed in a Location as well as the extra options provided by BasenameSupport and QuerySupport, each respectively can be found here and here. Simple defaults are provided if not supplied.
In @staltz isomorphic example, you can remove all references to context$ if it is now unneeded for your application.
FAQs
Cycle.js Driver based on the rackt/history library
We found that cycle-history 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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.

Product
Bringing supply chain security to the next generation of JavaScript package managers