Skip to content

Instantly share code, notes, and snippets.

@lfeng
lfeng / npm-top.md
Created January 11, 2016 01:27 — forked from bcoe/npm-top.md
npm-top.md

npm Users By Downloads (git.io/npm-top)


npm users sorted by the monthly downloads of their modules, for the range Dec 1, 2015 until Jan 1, 2016.

Metrics are calculated using top-npm-users.

# User Downloads
@lfeng
lfeng / better-nodejs-require-paths.md
Created October 12, 2015 07:19 — forked from branneman/better-nodejs-require-paths.md
Better local require() paths for Node.js

Better local require() paths for Node.js

Problem

When the directory structure of your Node.js application (not library!) has some depth, you end up with a lot of annoying relative paths in your require calls like:

var Article = require('../../../models/article');

Those suck for maintenance and they're ugly.

Possible solutions