Mark Vayngrib

Results 55 issues of Mark Vayngrib

thanks @fanatid for helping me look into this

first of all, thanks for the wonderful library! I think it would be easier to use if it didn't bundle all of its dependencies. Can you replace them with the...

is there a way to manage sessions? I have the following scenario: User A and User B are talking User B falls off a cliff User B gets back online,...

based on #4

so you can do ``` js var db = level('blah.db', { valueEncoding: 'json' }) var feed = changes(db) feed.append({ hey: 'ho' }) feed.createReadStream() .on('data', console.log) // { change: 1, value:...

doesn't levelup guarantee sequence of puts and callbacks?

make live stream respect cb: ``` js feed.createReadStream({ live: true }, cb) // didn't work ``` support key/value-only stream: ``` js feed.createReadStream({ keys: false }) feed.createReadStream({ values: false }) ```

see my exact use case below :) ```sh youtubemp3() { local video="$1" local title=$(ytdl -j "$video" | jq -r .title | sanitize-filename) #

more of a discussion than a true PR a slightly more opinionated version, but [standard](https://npmjs.org/package/standard) is gaining steam (it was adopted by [npm](https://npmjs.org/package/npm) recently), and [pre-commit](https://npmjs.org/package/pre-commit) is great for repos...