LearningNodeJS
LearningNodeJS copied to clipboard
Source code to accompany my book, "Learning Node.JS"
Hi Marc, Was wondering where the actual photos are located?
Maybe this is just me, but the examples used to demonstrate inheritance demonstrated in Chapter 2 are bugging me a little. The code is fine, but in plane geometry, "[A...
The chapter 6 code for "Serve Static Content Pauses" crashes with the error: TypeError: First argument must be a string or Buffer when it calls: if (!res.write(data))
The following 2 lines (page 177): var db = require('./db.js'); var albums = db.albums; I see the genius in it... I don't fully grasp it...; It seems, the 2nd time...
Is traversing "up the path tree" in the down direction?; The tree is upside down...; Thank you in advance!;
The collections() function was tripping an error each time I called it with the purpose of creating a collection. Replacing it with the createCollection() function solves the issue.