January 2018
Intermediate to advanced
336 pages
7h 22m
English
Before we can start manipulating data with Node.js, we have to get it. The data we’ll be using comes from Project Gutenberg, which is dedicated to making public-domain works available as free ebooks.[34]
Project Gutenberg produces catalog download bundles that contain Resource Description Framework (RDF) files for each of its 53,000-plus books. (RDF is an XML-based format.) The bz2 compressed version of the catalog file is about 40 MB. Fully extracted, it contains a little over 1 GB of RDF files.
To begin, create two sibling directories on your machine, called databases and data.
| | $ mkdir databases |
| | $ mkdir data |
The databases project directory will hold all of the programs and configuration files you’ll ...
Read now
Unlock full access