Skip to content
This repository has been archived by the owner on Aug 6, 2021. It is now read-only.

Latest commit

 

History

History
115 lines (66 loc) · 4.5 KB

adapterList.md

File metadata and controls

115 lines (66 loc) · 4.5 KB

Available Database Adapters

This file is meant to be an up to date, comprehensive list of all of the core adapters available for the Sails.js framework, and a reference of a few of the community adapters out there. If you see out of date information on this page, or if you want to add an adapter you made, please just submit a pull request to this file, adding to the list of community adapters below.

Officially supported database adapters

sails-disk

https://github.com/balderdashy/sails-disk/

Write to your computer's hard disk, or a mounted network drive. Not suitable for at-scale production deployments, but great for a small project, and essential for developing in environments where you may not always have a database set up. This adapter is bundled with Sails and works out of the box with zero configuration.

Interfaces implemented:
  • Semantic
  • Queryable
  • Streaming
sails-memory

https://github.com/balderdashy/sails-memory/

Pretty much like Disk, but doesn't actually write to disk, so it's not persistent. Not suitable for at-scale production deployments, but useful when developing on systems with little or no disk space.

Interfaces implemented:
  • Semantic
  • Queryable
  • Streaming
sails-mysql

https://github.com/balderdashy/sails-mysql/

MySQL is the world's most popular relational database. http://en.wikipedia.org/wiki/MySQL

Interfaces implemented:
  • Semantic
  • Queryable
  • Streaming
  • Migratable
sails-postgres

https://github.com/balderdashy/sails-postgresql/

PostgreSQL is another popular relational database.

Interfaces implemented:
  • Semantic
  • Queryable
  • Streaming
  • Migratable
sails-mongo

https://github.com/balderdashy/sails-mongo/

MongoDB is the leading NoSQL database.

Interfaces implemented:
  • Semantic
  • Queryable
  • Streaming
sails-redis

https://github.com/balderdashy/sails-redis/

Redis is an open source, BSD licensed, advanced key-value store.

Interfaces implemented:
  • Semantic
  • Queryable

Can I contribute to a core adapter?

Definitely! Get started by reading the Sails project contribution guide.

Community supported database adapters

Is your database not supported by one of the core adapters? Good news! There are many different community database adapters for Sails.js and Waterline available on NPM.

Learn how to install and configure community adapters.

Here are a few highlights:

Name Maintainer Interfaces implemented Latest stable version
Sails-MSsqlserver misterGF NPM version
Sails-OrientDB appscot Semantic, Queryable, Associations, Migratable npm version
Sails-REST zohararad Semantic
Sails-Oracle atiertant
Sails-Cassandra dtoubelis Semantic, Migratable, Iterable npm version
Sails-Solr sajov Semantic, Migratable, Queryable npm version
Sails-Filemaker toddgeist Semantic npm version
Sails-Derby dash- Semantic, Queryable, Associations, SQL

Add your custom adapter to this list

Have you written a Sails adapter? Submit a PR to this file and add it here!