You ebook was just what I needed because it tells me everything I need to know about starting and maintaining a wormery, as well as lots of information about the little wrigglers themselves. As a beginner I can't imagine how it would be like setting up a worm farm without guidelines, i...
To make a wormery, first get a large jar that has a wide opening. Put in a layer of soil, a layer of peat, and a layer of sand. Water the soil well. Now dig some worms from a garden and put them in your wormery. Don't bury the worms! They'll take care of that themselves....
db('wormery'); const col = db.collection('worms'); function findByClass(className, cb) { return col.find({ class: className }, (err, worms) => { if (err) return cb(err); return worms .limit(10) .toArray(cb); }); } return { findByClass, }; }; Copy I added in a mongo...