
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
simple-odata-server-ex
Advanced tools
OData server with adapter for mongodb and nedb,another one just change method patch to put
Super simple implementation of OData server running on Node.js with easy adapters for mongodb and nedb. Just define an OData model, provide a mongo or nedb database, hook into node.js http server and run.
It supports basic operations you would expect like providing $metadata, filtering and also operations for insert, update and delete. On the other hand it suppose to be really simple so you don't get support for entity links, batch operations, atom feeds and many others.
The implementation is tested with .net OData client and it should fulfill basic protocol requirements.
##Get started
This is how you can create an OData server with node.js http module and nedb.
var http = require('http');
var Datastore = require('nedb');
var db = new Datastore( { inMemoryOnly: true });
var ODataServer = require("simple-odata-server");
var model = {
namespace: "jsreport",
entityTypes: {
"UserType": {
"_id": {"type": "Edm.String", key: true},
"test": {"type": "Edm.String"},
}
},
entitySets: {
"users": {
entityType: "jsreport.UserType"
}
}
};
var odataServer = ODataServer("http://localhost:1337")
.model(model)
.onNeDB(function(es, cb) { cb(null, db)});
http.createServer(odataServer.handle.bind(odataServer)).listen(1337);
Now you can try requests like:
GET http://localhost:1337/$metadata
GET http://localhost:1337/users?$filter=test eq 'a' or test eq 'b'&$skip=1&$take=5
GET http://localhost:1337/users('aaaa')
GET http://localhost:1337/users?$orderby=test desc
GET http://localhost:1337/users/$count
POST, PATCH, DELETE
##mongodb It works the same way with nedb and mongo. You just need to provide callback for mongo database instance.
MongoClient.connect(url, function(err, db) {
odataServer.onMongo(function(cb) { cb(err, db); });
});
##express.js
It works well also with the express.js. You even don't need to provide service uri in the ODataServer constructor because it is taken from the express.js request.
app.use("/odata", function (req, res) {
odataServer.handle(req, res);
});
##Configurations
Using onNeDB and onMongo is just a simple way for initializing ODataServer. You can implement your own data layer or override default behavior using following methods:
odataServer
.query(fn(setName, query, cb))
.update(fn(setName, query, update, cb))
.insert(fn(setName, doc, cb))
.remove(fn(setName, query, cb))
.beforeQuery(fn(setName, query, cb))
.beforeUpdate(fn(setName, query, update))
.beforeInsert(fn(setName, doc, cb))
.beforeRemove(fn(setName, query, cb))
.afterRead(fn(setName, result));
//add hook to error which you can handle or pass to default
.error(fn(req, res, error, default))
##Contributions I will maintain this repository for a while because I use it in jsreport. You are more than welcome to contribute with pull requests and add other basic operations you require.
##Limitations
##License See license
FAQs
OData server with adapter for mongodb and nedb,another one just change method patch to put
The npm package simple-odata-server-ex receives a total of 3 weekly downloads. As such, simple-odata-server-ex popularity was classified as not popular.
We found that simple-odata-server-ex demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.