![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
koa-waterline-gowhich
Advanced tools
Middleware for your hose
npm install koa-waterline-gowhich
//see example.js
function* (){
var ctx = this;
var message = 'This is an example';
var commentCreated = yield ctx._waterline.collections.comments.create({message: message});
// You can yield to the CRUD waterline functions because they are written as promises.
console.log(commentCreated);
}
// OR
function* () {
var waterline = Waterline.init(injection);
var message = 'This is an example';
var commentCreated = yield waterline.collections.comments.create({message: message});
}
var connections= {
couch: {
adapter: "couch",
host: '127.0.0.1',
port: '5984',
username: '',
password: ''
},
mongo: {
adapter: "mongo",
host: 'localhost',
port: '27017',
user: '',
password: '',
database: 'waterline'
}
};
var adapters= {
couch: require('sails-couchdb-orm'),
mongo: require('sails-mongo')
};
var models = {
"comments": {
"adp": "couch",
"connection": "couch",
"properties": {
"archived": {
"type": "boolean",
"defaultValue": false
},
"message": {
"type": "string"
}
}
},
"history": {
"adp": "mongo",
"connection": "mongo",
"properties": {
"activity_id": {
"type": "number",
"enum": [
"unique"
]
}
}
}
};
var injection = {};
injection.methods = false;
injection.models = models;
injection.adapters = adapters;
injection.connections = connections
app.use(waterline(injection));
##Attributes Models - Required
- Models must have an adp, connection, and the properties attributes with the same design pattern in the example above.
Adapters - Required
- The adapters refer to the connection adapters; this is required and while seeming redundant it is required to run waterline
Connections - Required
- The connection attributes are the setting parameters for the data models to create the waterline.
Methods - Optional
- The methods attribute allows the injection of functions for virtual methods inside the model. An example of such an injection would something like this:
Methods Example:
var methods = {
history: function(){
//virtual methods specific to the history model
},
comments: function(){
//virtual methods specific to the comments model
}
};
MIT
FAQs
middleware for koa
We found that koa-waterline-gowhich 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.