1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 22:22:18 +02:00
tldr/pages/common/sails.md
Lena 0fddee2272
pages/*: reword descriptions to comply with the style guide (#11507)
* pages/*: reword descriptions to comply with the style guide

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-11-15 09:55:25 +05:30

385 B

sails

A realtime enterprise level MVC framework built on top of Node.js. More information: https://sailsjs.com.

  • Start Sails:

sails lift

  • Create new Sails project:

sails new {{projectName}}

  • Generate Sails API:

sails generate {{name}}

  • Generate Sails Controller:

sails generate controller {{name}}

  • Generate Sails Model:

sails generate model {{name}}