Back to Sails

Modules

MODULES.md

12.12.200024.4 KB
Original Source

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.

Framework and ORM

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

PackageLatest Stable ReleaseBuild Status (edge)
<a href="http://github.com/balderdashy/sails" target="_blank" title="Github repo for Sails core"></a>
<a href="http://github.com/balderdashy/waterline" target="_blank" title="Github repo for Waterline ORM"></a>

Core hooks

As of Sails v1, some hooks are no longer included in Sails core. Instead, they're published as standalone packages:

HookPackageLatest Stable ReleaseBuild Status (edge)Purpose
ormsails-hook-ormImplements support for Waterline ORM in Sails.
socketssails-hook-socketsImplements Socket.io support in Sails.

These are not all the core hooks in Sails. There are other core hooks built in to the sails package itself (see lib/hooks/). These other, built-in hooks can still be disabled or overridden using the same configuration.

Bundled hooks

Certain additional hooks are bundled as dependencies of a new Sails app, especially when using the "Web app" template:

HookPackageLatest Stable ReleaseBuild Status (edge)Purpose
gruntsails-hook-gruntGoverns the built-in asset pipeline in Sails.
organicssails-hook-organicsEvolving library of well-tested, well-documented, and officially supported modules for the most common everyday tasks in apps (e.g. password hashing, emails, billing, etc.)
apianalyticssails-hook-apianalyticsA Sails hook for logging detailed request metadata and monitoring your API.
devsails-hook-devA Sails hook that provides diagnostic / debugging information and levers during development.

Core socket client SDKs

PlatformPackageLatest Stable ReleaseBuild Status (edge)
Browsersails.io.js-dist
Node.jssails.io.js

Other browser libraries

The "Web App" template in Sails comes with a lightweight client-side JavaScript wrapper for Vue.js called parasails:

Core database adapters

PackageLatest Stable ReleaseBuild Status (edge)Platform
sails-diskLocal disk (.tmp/)
sails-mysqlMySQL
sails-postgresqlPostgreSQL
sails-mongoMongoDB
sails-redisRedis

Core filesystem adapters

PackageLatest Stable ReleaseBuild Status (edge)Platform
skipper-diskLocal disk (.tmp/uploads/)
skipper-s3Amazon S3 (AWS)

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 framework utilities

PackageLatest Stable ReleaseBuild Status (edge)
skipper
machine
machine-as-action
whelk
captains-log
anchor
sails-generate
waterline-schema
waterline-utils
include-all
reportbackn/a
switchback
rttc
@sailshq/lodashn/a

Forks

Official documentation

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

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

All known translation projects for the Sails documentation are listed in the README sails-docs.

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.

<!-- Looking for the list that used to be here? See https://github.com/balderdashy/sails-docs/blob/323477613b6b9ab0cfd7dfb38e53cdff6f46f5d8/concepts/extending-sails/Generators/generatorList.md -->

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 filesystem, 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.

Community socket client SDKs & examples

Need to connect to Sails from a native iPhone or Android app?

PlatformRepoBuild Status (edge)
iOSsails.ios
Objective Csails.io.objective-cN/A
AndroidSails MessengerN/A
React NativeReact Native exampleN/A
CordovaPhonegap tipsN/A

Misc. projects

PackageLatest Stable ReleasePurpose
sails-migrationsManual migration tool for Sails, built on Knex.
sails-mysql-transactionsAugmented database adapter for mySQL with transaction and replication support.
sails-inverse-modelGenerate Sails/Waterline model definitions from a pre-existing database.

FAQ

What happened to the core generators?

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

What release of XYZ should I install?

You can read about naming conventions for plugins and core modules here. Covers NPM dist tags, git tags, and version strings, as well as recommendations for hotfix branches.