Reputation: 3939
I am a beginner in using WebStorm. I try to create a new application WebStorm with Jade template engine with node.js and sail.js. I found some project templates in WebStorm "Create New Project" wizard. Please see the below image.
But I didn't see the Node.js Sail App item in my menu. I already installed Sails.js using the command line. How do I get this template in my Project Type menu?
Upvotes: 2
Views: 3028
Reputation: 918
There is now a Sails/Treeline plugin for WebStorm that allows you to directly create a Sails app. Install the plugin and you can create a new Sails app.
Upvotes: 1
Reputation: 24948
According to this SO question and this ticket on the developer's site, the project template types are hard-coded into WebStorm and there's no way to make your own. However, starting a new project in Sails is super easy--just do sails new [your app name]
on the command line to create a new app with the correct folder structure and files, and import the app directory into WebStorm!
Upvotes: 4