Skip to content

Installation Instructions

marktyers edited this page Feb 2, 2014 · 9 revisions

Installing NodeJS

You will need to install NodeJS on your development platform. The project has been tested with NodeJS v0.10.25

Required Modules

Before running please ensure you have installed the express module

npm install express

We are currently porting the database to sqlite3, install the sqlite3 library as well

npm install -g node-gyp
npm install sqlite3

Finally since we will be serving static files (book covers) we need to install node-static

npm install node-static

The repo contains only the project files (no libraries).

Database

Sample data is provided in an SQLite database. For a production environment we recommend using an alternative such as MySQL.

Clone this wiki locally