Skip to content

Instantly share code, notes, and snippets.

@kdawes
Created November 30, 2012 02:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kdawes/4173492 to your computer and use it in GitHub Desktop.
Save kdawes/4173492 to your computer and use it in GitHub Desktop.
https://github.com/indexzero/winston-couchdb.git
$ git clone https://github.com/indexzero/winston-couchdb.git
Cloning into 'winston-couchdb'...
remote: Counting objects: 60, done.
remote: Compressing objects: 100% (24/24), done.
remote: Total 60 (delta 28), reused 59 (delta 27)
Unpacking objects: 100% (60/60), done.
whistler:tmp kdawes$ cd winston-couchdb/
whistler:winston-couchdb kdawes$ ls
README.md lib package.json test
whistler:winston-couchdb kdawes$ npm install
npm http GET https://registry.npmjs.org/cradle
npm http GET https://registry.npmjs.org/winston
npm http GET https://registry.npmjs.org/vows
npm http 304 https://registry.npmjs.org/vows
npm http 304 https://registry.npmjs.org/cradle
npm http 304 https://registry.npmjs.org/winston
npm http GET https://registry.npmjs.org/follow
npm http GET https://registry.npmjs.org/vargs/0.1.0
npm http GET https://registry.npmjs.org/request
npm http GET https://registry.npmjs.org/eyes
npm http GET https://registry.npmjs.org/diff
npm http GET https://registry.npmjs.org/async
npm http GET https://registry.npmjs.org/colors
npm http GET https://registry.npmjs.org/eyes
npm http GET https://registry.npmjs.org/loggly
npm http GET https://registry.npmjs.org/pkginfo
npm http GET https://registry.npmjs.org/stack-trace
npm http 304 https://registry.npmjs.org/request
npm http 304 https://registry.npmjs.org/follow
npm http 304 https://registry.npmjs.org/vargs/0.1.0
npm http 304 https://registry.npmjs.org/eyes
npm http 304 https://registry.npmjs.org/async
npm http 304 https://registry.npmjs.org/diff
npm http 304 https://registry.npmjs.org/colors
npm http 304 https://registry.npmjs.org/stack-trace
npm http 304 https://registry.npmjs.org/pkginfo
npm http 304 https://registry.npmjs.org/eyes
npm http 304 https://registry.npmjs.org/loggly
npm http GET https://registry.npmjs.org/request
npm http GET https://registry.npmjs.org/request
npm http GET https://registry.npmjs.org/timespan
npm http 304 https://registry.npmjs.org/request
npm http 304 https://registry.npmjs.org/request
npm http 304 https://registry.npmjs.org/timespan
vows@0.6.4 node_modules/vows
├── eyes@0.1.8
└── diff@1.0.4
cradle@0.6.4 node_modules/cradle
├── vargs@0.1.0
├── request@2.12.0
└── follow@0.7.2 (request@2.2.9)
winston@0.5.11 node_modules/winston
├── colors@0.6.0-1
├── eyes@0.1.8
├── pkginfo@0.2.3
├── async@0.1.22
├── stack-trace@0.0.6
└── loggly@0.3.11 (timespan@2.2.0, request@2.9.203)
whistler:winston-couchdb kdawes$ npm test
> winston-couchdb@0.6.1 test /private/tmp/winston-couchdb
> vows test/*-test.js --spec
module.js:340
throw err;
^
Error: Cannot find module 'winston/test/transports/transport'
at Function.Module._resolveFilename (module.js:338:15)
at Function.Module._load (module.js:280:25)
at Module.require (module.js:362:17)
at require (module.js:378:17)
at Object.<anonymous> (/private/tmp/winston-couchdb/test/winston-couchdb-test.js:13:17)
at Module._compile (module.js:449:26)
at Object.Module._extensions..js (module.js:467:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Module.require (module.js:362:17)
npm ERR! Test failed. See above for more details.
npm ERR! not ok code 0
@kdawes
Copy link
Author

kdawes commented Dec 1, 2012

forked to https://github.com/kdawes/winston-couchdb.git

cat package.json
{
"name": "winston-couchdb",
"description": "A CouchDB transport for winston",
"version": "0.6.1",
"author": "Charlie Robbins charlie.robbins@gmail.com",
"repository": {
"type": "git",
"url": "http://github.com/indexzero/winston-couchdb.git"
},
"keywords": ["logging", "sysadmin", "tools", "winston", "couchdb"],
"dependencies": {
"cradle": "0.6.x"
},
"devDependencies": {
"winston": "0.5.x",
"vows": "0.6.x"
},
"main": "./lib/winston-couchdb",
"scripts": { "test": "vows test/*-test.js --spec" },
"engines": { "node": ">= 0.4.0" }
}

Vows is at : [dist] Bump version to 0.7.0
winston is at : 0.6.2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment