On Github davewalk / lt13
var hello = require('hello');
hello.world();
module.exports = function (something) {
// Do stuff with that something
};
if you get lost while building an app, it's because there are some tiny modules that don't exist yet and you should go and build them
— James Halliday (@substack) October 28, 2013 "All the nice, reusable components sublimate away onto github and npm where everybody can collaborate to advance the commons."
var hoods = require('philly-hoods');
hoods.findByCoords(39.948495, -75.144504, function (err, res) {
if (err) return err;
console.log(res);
});
hoods.findByName('old', function (err, res) {
if (err) return err;
console.log(res);
});