Forrest logo
back to the sails tool

sails:tldr:6c28a

sails: Create new Sails project.
$ sails new ${projectName}
try on your machine

The command "sails new ${projectName}" is used to create a new Sails.js project with a specified name.

  • "sails new" is the command used to create a new Sails.js project.
  • "${projectName}" is a placeholder for the desired name of the project. You need to replace it with the actual name you want to give to your project.

The command is usually executed in the command line or terminal in the directory where you want the new project to be created. When you run this command, Sails.js will generate the necessary files and folder structure for the project, including the configuration files, models, controllers, and views.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the sails tool