Firestone
A thin REST API prototyping framework using Express and MongoDB.
NOTE: EVERYTHING HERE IS IN ALPHA. THINGS ARE IN CONSTANT FLUX AND VERY MUCH INCOMPLETE.
Note: Yes, I am probably re-inventing the wheel here. There are other (better) solutions like FeathersJs ... have a look there.
Quickly create RESTful APIs using Node, Express, and Mongo.
Quickstart
In its most basic form, a Firestone app looks like this:
'use strict';const firestone = ; // define routesconst routes = path: '/doctors' collection: 'doctors' map: firestone // configure firestonefirestone;firestone; // create express app and use routesconst app = ;app; // serve the express appconst port = processenvPORT || 3000;app;console;