Skip to content

Latest commit

 

History

History
223 lines (125 loc) · 16.6 KB

MODULES.md

File metadata and controls

223 lines (125 loc) · 16.6 KB

Modules

Sails is a large project, with many modular components. Each module is located in its own repository, and in most cases is tested individually.

Below, you'll find an overview of the modules maintained by the core team and community members.

Sails core

The modules comprising the Sails framework, as well as the other plugins maintained by our core team, are spread across a number of different code repositories. Some modules can be used outside of the context of Sails, while others are not intended for external use.

Core modules

For more information on the available releases of the Sails framework as a whole, check out the contribution guide.

Repo Build Status (edge) Latest Stable Version
Sails.js logo (small) Build Status NPM version
waterline Build Status NPM version
anchor Build Status NPM version
waterline-criteria Build Status NPM version
waterline-schema Build Status NPM version
waterline-utils NPM version
sails-generate Build Status NPM version
captains-log Build Status NPM version

Core framework utilities

Repo Latest Stable Version
include-all NPM version
reportback NPM version
switchback NPM version

Core generators

As of Sails v1.0, core generators are now bundled in sails-generate. All generators can still be overridden the same way. For examples, see below.

Core hooks

Hook Repo Build Status (edge) Purpose
orm sails-hook-orm Build Status Implements support for Waterline ORM in Sails.
sockets sails-hook-sockets Build Status Implements Socket.io support in Sails.

Other core hooks not listed above are currently contained in sub-folders within Sails core. See lib/hooks/.

Officially-supported adapters

Repo Build Status (edge) Latest Stable Version Platform
Local Disk Build Status NPM version Local disk (.tmp/)
MySQL Build Status NPM version MySQL
PostgreSQL Build Status NPM version PostgreSQL
Mongo Build Status NPM version MongoDB
Redis Build Status NPM version Redis

Officially-supported socket client SDKs

Platform Repo Build Status (edge)
Browser sails.io.js Build Status
Node.js sails.io.js Build Status

Official Documentation

The official documentation for the Sails framework is written in Markdown, and is automatically compiled for the Sails website.

Repo Purpose
sails-docs Raw content for reference, conceptual, anatomical, and other documentation on the Sails website (in Markdown).
www.sailsjs.org The Sails app that powers sailsjs.org. HTML content is automatically compiled from sails-docs.
doc-templater The module we use to pre-process, compile, and format Markdown documentation files into the HTML markup and tree menus at sailsjs.org/documentation.

Community projects

In addition to the official code repositories that are supported by the Sails.js core team, there are countless other plugins created by members of the Sails.js community.

Hooks

There are at least 200 community hooks for Sails.js available on NPM.

Learn about custom hooks in Sails.

Asset pipeline

Need to customize your build? Want automatically-generated spritesheets? Source maps? Sails.js uses Grunt for its asset pipeline, which means it supports any Grunt plugin. out of the box. There are thousands of Grunt plugins available on NPM.

Learn how to customize your app's asset pipeline.

Generators

Don't like Grunt? Want to use WebPack or Gulp instead? Prefer your generated backend files to be written in CoffeeScript? There are at least 100 community generators for Sails.js available on NPM.

Learn how to use community generators, and how to build your own.

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.

Filesystem adapters

Need to upload files to a cloud file store like S3, GridFS, or Azure Cloud Files? Check out the community filesystem adapters for Sails.js and Skipper available on NPM.

Learn how to wire up one or more custom filesystem adapters for your application.

3rd party integrations

Need to process payments with Stripe? Fetch video metadata from YouTube? Process user email data via Google APIs? Choose from hundreds of community machinepacks for Sails.js/Node available on NPM.

Learn how to install and use machinepacks in your controller actions and helpers.

Database drivers

Want to work with your database at a low level? Need to get extra performance out of your database queries? Dynamic database connections?

Learn about Waterline drivers.

View engines

Is EJS bumming you out? Prefer to use a different templating language like pug (/jade), handlebars, or dust? Sails.js supports almost any Consolidate/Express-compatible view engine-- meaning you can use just about any imaginable markup language for your Sails.js views. Check out the community view engines for Sails.js and Express available on NPM.

Learn how to set up a custom view engine for your app.

Session stores

The recommended production session store for Sails.js is Redis... but we realize that, for some apps, that isn't an option. Fortunately, Sails.js supports almost any Connect/Express-compatible session store-- meaning you can store your sessions almost anywhere, whether that's Mongo, on the local fileystem, or even in a relational database. Check out the community session stores for Sails.js, Express, and Connect available on NPM.

Learn how to install and configure a custom session store in your Sails app.

Socket client SDKs & examples

Platform Repo Build Status (edge)
iOS sails.ios CI Status
Android Sails Messenger N/A
Angular angularSails Build Status
Objective C sails.io.objective-c N/A
Backbone backbone-to-sails N/A

Misc. projects

Repo
sails-migrations
sails-mysql-transactions

FAQ

What happened to the core generators?

For easier maintainence, they were pulled into sails-generate.

Can I add my plugin to this list?

If you have an adapter, hook, or other plugin that isn't covered here, and that you feel would add value for the community, please feel free to send a PR adding it to this section.