![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.
waterline
Advanced tools
Waterline is a brand new kind of storage and retrieval engine.
It provides a uniform API for accessing stuff from different kinds of databases, protocols, and 3rd party APIs. That means you write the same code to get and store things like users, whether they live in Redis, MySQL, MongoDB, or Postgres.
Waterline strives to inherit the best parts of ORMs like ActiveRecord, Hibernate, and Mongoose, but with a fresh perspective and emphasis on modularity, testability, and consistency across adapters.
For detailed documentation, see the Waterline documentation.
Looking for the version of Waterline used in Sails v0.12? See https://github.com/balderdashy/waterline/tree/0.11.x.
Install from NPM.
$ npm install waterline
Waterline uses the concept of an adapter to translate a predefined set of methods into a query that can be understood by your data store. Adapters allow you to use various datastores such as MySQL, PostgreSQL, MongoDB, Redis, etc. and have a clear API for working with your model data.
It also allows an adapter to define its own methods that don't necessarily fit into the CRUD methods defined by default in Waterline. If an adapter defines a custom method, Waterline will simply pass the function arguments down to the adapter.
Need help or have a question? Click here.
To report a bug, click here.
Please observe the guidelines and conventions laid out in our contribution guide when opening issues or submitting pull requests.
All tests are written with mocha and should be run with npm:
$ npm test
As of Waterline 0.13 (Sails v1.0), these keys allow end users to modify the behaviour of Waterline methods. You can pass them as the meta
query key, or via the .meta()
query modifier method:
SomeModel.create({...})
.meta({
skipAllLifecycleCallbacks: true
})
.exec(...);
These keys are not set in stone, and may still change prior to release. (They're posted here now as a way to gather feedback and suggestions.)
Meta Key | Default | Purpose |
---|---|---|
cascade | false | Set to true to automatically "empty out" (i.e. call replaceCollection(..., ..., []) ) on plural ("collection") associations when deleting a record. Note: In order to do this when the fetch meta key IS NOT enabled (which it is NOT by default), Waterline must do an extra .find().select('id') before actually performing the .destroy() in order to get the IDs of the records that would be destroyed. |
fetch | false | For adapters: When performing .update() or .create() , set this to true to tell the database adapter to send back all records that were updated/destroyed. Otherwise, the second argument to the .exec() callback is undefined . Warning: Enabling this key may cause performance issues for update/destroy queries that affect large numbers of records. |
skipAllLifecycleCallbacks | false | Set to true to prevent lifecycle callbacks from running in the query. |
skipRecordVerification | false | Set to true to skip Waterline's post-query verification pass of any records returned from the adapter(s). Useful for tools like sails-hook-orm's automigrations. Warning: Enabling this flag causes Waterline to ignore customToJSON ! |
To provide per-model/orm-wide defaults for the cascade
or fetch
meta keys, there are a few different model settings you might take advantage of:
{
attributes: {...},
primaryKey: 'id',
cascadeOnDestroy: true,
fetchRecordsOnUpdate: true,
fetchRecordsOnDestroy: true,
fetchRecordsOnCreate: true,
fetchRecordsOnCreateEach: true,
}
Not every meta key will necessarily have a model setting that controls it-- in fact, to minimize peak configuration complexity, most will probably not.
Rough draft of documentation for a few new methods available in Waterline v0.13.
Replace the specified collection of one or more parent records with a new set of members.
// For users 3 and 4, change their "pets" collection to contain ONLY pets 99 and 98.
User.replaceCollection([3,4], 'pets')
.members([99,98])
.exec(function (err) {
// ...
});
Under the covers, what this method actually does varies depending on whether the association passed in uses a junction or not.
We know a plural association must use a junction if either (A) it is one-way ("via-less") or (B) it reciprocates another plural association.
If the association uses a junction, then any formerly-ascribed junction records are deleted, and junction records are created for the new members. Otherwise, if the association doesn't use a junction, then the value of the reciprocal association in former child records is set to null
, and the same value in newly-ascribed child records is set to the parent record's ID. (Note that, with this second category of association, there can only ever be one parent record. Attempting to pass in multiple parent records will result in an error.)
Add new members to the specified collection of one or more parent records.
// For users 3 and 4, add pets 99 and 98 to the "pets" collection.
// > (if either user record already has one of those pets in its "pets",
// > then we just silently skip over it)
User.addToCollection([3,4], 'pets')
.members([99,98])
.exec(function(err){
// ...
});
Remove members from the the specified collection of one or more parent records.
// For users 3 and 4, remove pets 99 and 98 from their "pets" collection.
// > (if either user record does not actually have one of those pets in its "pets",
// > then we just silently skip over it)
User.removeFromCollection([3,4], 'pets')
.members([99,98])
.exec(function(err) {
// ...
});
MIT. Copyright © 2012-2017 Mike McNeil, Balderdash Design Co., & The Sails Company
Waterline, like the rest of the Sails framework, is free and open-source under the MIT License.
FAQs
An ORM for Node.js and the Sails framework
The npm package waterline receives a total of 14,651 weekly downloads. As such, waterline popularity was classified as popular.
We found that waterline demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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.