
Security News
Feross on the 10 Minutes or Less Podcast: Nobody Reads the Code
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.
A cycle.js driver that wraps a gun.js store instance.
Note: This driver currently depends on the xstream library.
select, shallow, and eachnpm install --save cycle-gun
The source from the Gun.js driver is an object with some methods that return streams.
Use gunSource.select('books') to go to the books path in the graph. It returns a new gunSource object.
Use gunSource.shallow() to get a Stream of the data under the current path. This is equivalent to Gun's .on(callback) API.
const presidentAge$ = sources.gun
.select('president').shallow()
.map(x => {
// x is the data for `president`
return x.age;
})
Use gunSource.each() to get a Stream of the data under each child property of the current path. This is equivalent to Gun's .map().on(callback) API. The return stream will emit an object {key, value}. This method is useful when the current path points to a set of many resources.
const book$ = sources.gun
.select('books').each()
.map(x => {
// x is an object {key, value} representing ONE book
return x.value;
})
In this version, we can send commands to the gun driver by sending a function through the sink stream with payload references.
const outgoingGunTodo$ = event$
.map((event) => function command(gunInstance) {
return gunInstance
.get('example/todo/data')
.path(uuid())
.put(event.payload);
})
Note: virtual-dom details omitted and transducers are verbose here
import xs from 'xstream';
import { run } from '@cycle/run';
//import { makeDOMDriver } from '@cycle/dom';
import { makeGunDriver } from 'cycle-gun';
import * as uuid from 'uuid-random';
import * as equal from 'deep-equal';
import dropRepeats from 'xstream/extra/dropRepeats';
function main(sources) {
const {DOM, gun} = sources;
const gunTodoEvent$ = sources.gun
.select('example').select('todo').select('data')
.shallow();
// map gun driver events into messages, or return as state
const gunState$ = gunTodoEvent$
.compose(dropRepeats(equal))
.map((event) => {
return { typeKey: 'getTodo', payload: event };
})
// sink gunState$ into a flux-type store or into vdom
// sink map filtered stream of payloads into function and emit function
const outgoingGunEvents$ = event$
.filter(event => event.typeKey === 'putTodo')
.map((event) => {
return (gunInstance) => {
return gunInstance.get('example/todo/data').path(uuid()).put(event.payload);
}
})
return {
// DOM: vtree$
gun: outgoingGunEvents$
};
}
const drivers = {
// DOM: makeDOMDriver('#app'),
gun: makeGunDriver({root: 'root', peers: ['http://localhost:3500']})
};
run(main, drivers);
Please see awesome-cyclejs - A curated list of awesome Cycle.js resources.
FAQs
A cycle.js driver that wraps gun.js
We found that cycle-gun 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
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.