[18:31]<antris> using commonjs with node.js, var level = require('level'); fails.. here's what's in the level.js in the same directory: http://dpaste.com/481615/ [18:32]<antris> and i get Error: Cannot find module 'level' [18:32]<antris> what am i doing wrong [18:33]<Wes-> antris: try require("./level") [18:34]<antris> Wes-: thanks! [18:34]<antris> works now