New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

append-log

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

append-log - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

57

index.js

@@ -1,59 +0,4 @@

var fs = require('fs');
const chunk_size = 512; //size in bytes of a chunk of db
const max_doc_size = 8; //max doc (key value pair) size of 9.99 MB
const byte_size_pad = Array(max_doc_size).fill().reduce(prev => prev = (prev || "") + "0"); //the padding string for they bytes, 8 0s
var split = require('split');
const record_seperator = String.fromCharCode(36); //record seperator ascii
0 passing (2ms)
class AppendLog {
constructor(file, cb) {
this.file = file;
this.locked = true;
this.write_buffer = [];
fs.stat(file, (err, stats) => {
if (err && err.code == 'ENOENT') {
this.size = 0;
} else {
this.size = stats.size;
}
fs.open(file, 'a+', (err, fd) => {
this._fd = fd;
this.locked = false;
cb(err, this);
});
});
}
readStream() {
var s = fs.createReadStream(this.file); //{ fd : this._fd } doesn't work
return s.pipe(split(record_seperator));
}
write(output, cb) {
this.write_buffer.push({ data: output, cb: cb });
this._write();
}
_write() {
if (this.locked || !this.write_buffer.length) {
return;
}
let toWrite = this.write_buffer.shift();
let buf = new Buffer(toWrite.data + record_seperator);
fs.write(this._fd, buf, 0, buf.byteLength, err => {
this.size += buf.byteLength;
toWrite.cb(err);
this.locked = false;
this._write;
});
}
}
module.exports = AppendLog;

9

index.src.js

@@ -8,3 +8,3 @@ var fs = require( 'fs' );

const record_seperator = String.fromCharCode( 36 ); //record seperator ascii
const record_seperator = String.fromCharCode( 30 ); //record seperator ascii

@@ -38,3 +38,3 @@ class AppendLog {

this.write_buffer.push( { data : output , cb : cb } );
this._write( );
process.nextTick( this._write.bind( this ) );
}

@@ -47,2 +47,4 @@

this.locked = true;
let toWrite = this.write_buffer.shift();

@@ -56,3 +58,4 @@

this.locked = false;
this._write;
process.nextTick( this._write.bind( this ) );
});

@@ -59,0 +62,0 @@ }

{
"name": "append-log",
"version": "0.0.2",
"version": "0.0.3",
"description": "append only log for todb",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc