🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

qfputs

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

qfputs - npm Package Compare versions

Comparing version
1.7.0
to
1.7.1
+9
.travis.yml
language: node_js
node_js:
- 0.10
- 6
- 8
after_success:
- npm install -g nyc
- npm install -g codecov
- nyc --reporter lcov npm test && codecov
+5
-3
{
"name": "qfputs",
"version": "1.7.0",
"version": "1.7.1",
"description": "very fast write-combining bufferd output",

@@ -20,3 +20,5 @@ "license": "Apache-2.0",

"scripts": {
"test": "nodeunit"
"coverage": "nyc --include lib --reporter lcov --reporter text npm test",
"clean": "rm -rf .nyc_output/ coverage/ npm-debug.log",
"test": "qnit"
},

@@ -40,3 +42,3 @@ "keywords": [

"aflow": "0.10.0",
"fs-ext": "0.5.0"
"fs-ext": "0.6.0"
},

@@ -43,0 +45,0 @@ "devDependencies": {

@@ -197,2 +197,13 @@ qfputs

### 1.7.1
- upgrade to fs-ext 0.6.0 to fix C++ install warnings
- test with qnit for real
- fix test createWriteStream to work with newer node
### 1.2.8
- test with qnit
- fix test createWriteStream to work with newer node
### 1.7.0

@@ -220,2 +231,6 @@

### 1.2.7
- remove fs-ext as a dependency (but use it if it is installed)
### 1.2.6

@@ -244,2 +259,5 @@

### 1.2.3
- 1.2.x forked from 1.3.0 and newer versions
### 1.2.2

@@ -246,0 +264,0 @@

@@ -230,3 +230,3 @@ // qfputs test

var self = this;
writer = fs.createWriteStream(this.tempfile, "a");
writer = fs.createWriteStream(this.tempfile, {flags: "a"});
var fp = new Fputs(writer);

@@ -233,0 +233,0 @@ fp.write("data");