
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
flumeview-reduce
Advanced tools
A flumeview into a reduce function. Stream append-only log data in the order the log is written into a reduce function to calculate a state.
var FlumeLog = require('flumelog-offset')
var codec = require('flumecodec')
var Flume = require('flumedb')
var Reduce = require('flumeview-reduce')
//statistics exports a reduce function that calculates
//mean, stdev, etc!
var statistics = require('statistics')
//initialize a flumelog with a codec.
//this example uses flumelog-offset, but any flumelog is valid.
var log = FlumeLog(file, 1024*16, codec.json) //use any flume log
//attach the reduce function.
var db = Flume(log)
.use('stats', Reduce(
1, // version
statistics, // reducer
function (data) { return data.value } // map
))
db.append({value: 1}, function (err) {
db.stats.get(function (err, stats) {
console.log(stats) // => {mean: 1, stdev: 0, count: 1, sum: 1, ...}
})
})
construct a flumeview from this reduce function. version should be a number,
and must be provided. If you make a breaking change to either reduce or map
then increment version and the view will be rebuilt.
map is optional. If map is applied, then each item in the log is passed to map
and then if the returned value is not null, it is passed to reduce.
var _value = map(value)
if(_value != null)
state = reduce(state, _value, seq)
using a map function is useful, because it enables efficiently streaming the realtime
changes in the state to a remote client.
then, pass the flumeview to db.use(name, flumeview)
and you'll have access to the flumeview methods on db[name]...
codec (optional) - specify the codec to use in the event your log uses the filesystem.
initialState (optional) - declare an initial state for your reducer. This will be ignored if a persisted state is found.
get the current state of the reduce. This will wait until the view is up to date, if necessary.
Creates a pull-stream whose:
map applied, but the reducer hasn't been applied yet).This is a light-weight for a remote client to keep up to date with the view - get a snapshot, and then update it themselves. This way we don't need to send a massive view every time there's a new log entry.
var db = Flume(log)
.use('stats', Reduce(2, myReducer, myMap))
var viewState // this is our view we're calculating remotely
pull(
db.stats.stream({live:true}),
pull.drain(function(value) {
if (!view) viewState = value // store the current snapshot (the first value)
else myReducer(viewState, value) // update the snapshot use reducer + mapped values
console.log(value) // do something with
}
)
db.append(
// ... some code that adds new code to the log, triggering stream.
)
flumeview-reduce currently includes several store implementations,
this is how the actual data is persisted. the current implementations are
localStorage, in a browserto set a store, you must set up flumeview-reduce via the lower level dependency injection api.
var Store = require('flumeview-reduce/store/fs')
var createReduce = require('flumeview-reduce/inject')
var Reduce = createReduce(Store)
//then use Reduce normally
var view = db.use('view', Reduce(version, reduce, map)) //etc
//since remote is most interesting
var Remote = require('flumeview-reduce/store/remote')
function get (opts, cb) {
//call the get method on the remote copy of the flumeview
view.get(opts, cb)
}
var RemoteReduce = createReduce(Remote(get, Store, codec))
var remoteView = _db.use('view', Reduce(version, reduce, map)) //etc
//make sure you pass the exact same reduce and map functions to the remote view!
MIT
FAQs
flumeview as a reduce function
We found that flumeview-reduce demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.