marchio
v0.1.19
Published
REST to database mapper
Downloads
5
Readme
marchio
REST to database mapper
Installation
$ npm init
$ npm install marchio --save
Usage
Google Datastore Demo
Prerequisite
To run the Google Datastore demo you will need a Google Cloud account. Visit https://cloud.google.com for more info.
Environment Variables
Create an environment variable set to the value of a Google Cloud project id and another set to an HTTP port value:
$ export MARCHIO_GOOGLE_PROJECT_ID='my-project-id'
$ export MARCHIO_PORT=8080
You can make this permanent by setting it in ~/.bash_profile on a Mac or in Linux and then running source ~/.bash_profile.
The Google Cloud project must be enabled for Google Datastore.
Create and Run the Demo Project
Create a new folder called datastore.
At the command line execute the following (sans $):
$ npm init
$ npm install marchio --save
$ npm install marchio-datastore --save
Create a file called index.js and paste in this code and save it:
"use strict";
var factory = require("marchio"),
datastore = require('marchio-datastore');
const GOOGLE_PROJECT_ID = process.env.MARCHIO_GOOGLE_PROJECT_ID,
PORT = process.env.MARCHIO_PORT || 8080;
var _testModel = {
name: 'user',
fields: {
email: { type: String, required: true },
status: { type: String, required: true, default: "NEW" }
}
}
var _marchio = null;
factory.create({
verbose: true
})
.then( (obj) => _marchio = obj )
.then( () =>
datastore.create({
projectId: GOOGLE_PROJECT_ID,
model: _testModel,
post: true,
get: true,
put: true,
del: true,
patch: true
})
)
.then( (dsApp) => _marchio.use(dsApp) )
.then( () => _marchio.listen( PORT ) )
.catch( (err) => {
console.error(err);
});
At the command line run:
$ node index.js
HTTP POST
In a second terminal window run this command:
$ curl -i -X POST -H "Content-Type: application/json" -d '{"email":"[email protected]"}' http://localhost:8080/user
The response will look like this (but with a different _id number):
{"email":"[email protected]","status":"NEW","_id":"1234567890123456"}
HTTP GET
Copy the _id number and paste it into a command like this (replacing 1234567890123456 with whatever was returned by the POST command):
$ curl -X GET -H "Accept: applications/json" http://localhost:8080/user/1234567890123456
In a browser visit https://console.cloud.google.com/datastore/ and verify that the entity has been added.
HTTP PUT
Paste the id into another command like this (replacing 1234567890123456 with whatever was returned by the POST command):
$ curl -i -X PUT -H "Content-Type: application/json" -d '{"email":"[email protected]", "status":"UPDATED"}' http://localhost:8080/user/1234567890123456
Run the GET command again to see the change to the status value.
In a browser visit https://console.cloud.google.com/datastore/ and verify that the entity has been updated.
HTTP PATCH
PATCH is similar to PUT. You still need to include the id of the record in the URL. But the data you pass in is not a set of fields. Instead it's a set of instructions for how to patch the record. To patch a record it first has to retrieve it, patch it, then save it, requiring two trips to the database.
curl -i -X PATCH -H "Content-Type: application/json" -d '[{"op":"replace","path":"/status","value":"PATCH THE STATUS"}]' http://localhost:8080/user/1234567890123456
Behind the scenes the the code uses fast-json-patch. Search for that on npm for more info how to apply patches.
HTTP DELETE
To delete the entity run another command like this (pasting over the id with the one returned by the POST command):
$ curl -i -X DELETE -H "Content-Type: application/json" http://localhost:8080/user/1234567890123456
Now run the GET command again and see the the entity was not found.
Try the POST command a few more times, changing the email address value each time.
Modules
marchio
Module
- marchio
- .package()
- .health() ⇒ Promise
- .use([path], middleware) ⇒ Promise
- .listen(port) ⇒ Promise
- .close() ⇒ Promise
- .kill() ⇒ Promise
marchio.package()
Returns the package name
Kind: instance method of marchio
marchio.health() ⇒ Promise
Health check
Kind: instance method of marchio
Example (Usage Example)
"use strict";
var factory = require("marchio");
factory.create()
.then( (obj) => obj.health() )
.then( (result) => {
console.log("HEALTH: ", result);
})
.catch( (err) => {
console.error(err);
});
marchio.use([path], middleware) ⇒ Promise
Use middleware function
Kind: instance method of marchio
| Param | Type | Description | | --- | --- | --- | | [path] | String | Optional base url (for example: '/api') | | middleware | middleware | ExpressJS middleware function, app, or router |
Example (Usage Example)
// $ npm install --save marchio-datastore
"use strict";
var factory = require("marchio"),
datastore = require('marchio-datastore');
var GOOGLE_PROJECT_ID = process.env.MARCHIO_GOOGLE_PROJECT_ID;
var _testModel = {
name: 'user',
fields: {
email: { type: String, required: true },
status: { type: String, required: true, default: "NEW" }
}
};
var _marchio = null;
factory.create({})
.then( (obj) => _marchio = obj )
.then( () =>
datastore.create({
projectId: GOOGLE_PROJECT_ID,
model: _testModel,
post: true,
get: true
})
)
.then( (dsApp) => _marchio.use(dsApp) )
.catch( function(err) {
console.error(err);
});
Example (Path Example)
// $ npm install --save marchio-datastore
"use strict";
var factory = require("marchio"),
datastore = require('marchio-datastore');
var GOOGLE_PROJECT_ID = process.env.MARCHIO_GOOGLE_PROJECT_ID;
var _testModel = {
name: 'user',
fields: {
email: { type: String, required: true },
status: { type: String, required: true, default: "NEW" }
}
};
var _marchio = null;
factory.create({})
.then( (obj) => _marchio = obj )
.then( () =>
datastore.create({
projectId: GOOGLE_PROJECT_ID,
model: _testModel,
post: true,
get: true
})
)
.then( (dsApp) => _marchio.use( '/api', dsApp ) )
.catch( function(err) {
console.error(err);
});
marchio.listen(port) ⇒ Promise
Listen function
Kind: instance method of marchio
| Param | Type | Description | | --- | --- | --- | | port | Number | Port to listen for HTTP requests |
Example (Usage Example)
// $ npm install --save marchio-datastore
"use strict";
var factory = require("marchio"),
datastore = require('marchio-datastore');
const GOOGLE_PROJECT_ID = process.env.MARCHIO_GOOGLE_PROJECT_ID,
PORT = process.env.MARCHIO_PORT || 8080;
var _testModel = {
name: 'user',
fields: {
email: { type: String, required: true },
status: { type: String, required: true, default: "NEW" }
}
};
var _marchio = null;
factory.create({})
.then( (obj) => _marchio = obj )
.then( () =>
datastore.create({
projectId: GOOGLE_PROJECT_ID,
model: _testModel,
post: true,
get: true
})
)
.then( (dsApp) => _marchio.use(dsApp) )
.then( () => _marchio.listen( PORT ) )
.catch( function(err) {
console.error(err);
});
marchio.close() ⇒ Promise
Close function
Kind: instance method of marchio
Example (Usage Example)
_marchio.close()
.then( () => _marchio.kill() )
.catch( (err) => {
console.error(err.message);
});
marchio.kill() ⇒ Promise
Kill function
Kind: instance method of marchio
Example (Usage Example)
_marchio.close()
.then( () => _marchio.kill() )
.catch( (err) => {
console.error(err.message);
});
marchio-factory
Factory module
marchio-factory.create(spec) ⇒ Promise
Factory method It takes one spec parameter that must be an object with named parameters
Kind: static method of marchio-factory
Returns: Promise - that resolves to {module:marchio}
| Param | Type | Default | Description | | --- | --- | --- | --- | | spec | Object | | Named parameters object | | [spec.verbose] | boolean | false | Echo debug message to the console |
Example (Usage example)
"use strict";
var factory = require("marchio");
factory.create({})
.then( (obj) => obj.health() )
.catch( (err) => {
console.error(err);
});
Testing
To test, go to the root folder and type (sans $):
$ npm test
Repo(s)
Donations
In lieu of donations you can support this project by buying one of my books: http://amazon.com/author/mitch.allen
Contributing
In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.
Version History
Version 0.1.19
- .use method now supports path parameter
Version 0.1.18
- Upgraded marchio-datastore version
Version 0.1.17
- Upgraded marchio-datastore version
Version 0.1.16
- Upgraded marchio-datastore version
- Added smoke tests for PUT, DELETE and PATCH
Version 0.1.15
- Upgraded marchio-datastore version and example to now support partial HTTP PUT transactions
Version 0.1.14
- Upgraded marchio-datastore version and example to now support HTTP PATCH method
Version 0.1.13
- Refactored placement of app creation
Version 0.1.12
- Upgraded marchio-datastore version and example to now support HTTP DELETE method
Version 0.1.11
- Upgraded marchio-datastore version and example to now support HTTP PUT method
Version 0.1.10
- Upgraded marchio-datastore version
- Now must specify what HTTP method to enable in datastore.create method.
Version 0.1.9
- Fixed cut off code in doc example
Version 0.1.8
- Updated documentation
Version 0.1.7
- Checked in file updates
Version 0.1.6
- Added environment variable setup to doc, updated example dependencies
Version 0.1.5
- Cleaned up documentation
Version 0.1.4
- Added Google Datastore example, added usage documentation
Version 0.1.3
- Fixed main reference in package.json
Version 0.1.2
- Cleaned up doc
- .listen method now just takes port argument instead of param object
Version 0.1.1
- Added doc
Version 0.1.0
- initial release