Node JS, AngularJS and SQL
Hello,
I am new to Webstorm and I would like to know if there is a template for a MEAN stack but not Mongo (I know Node JS and Mongo go great together but here I am going to use SQL).
Do I need to start from a NodeJS project or an AngularJS one ? Should I use Yeoman ?
I am a bit lost since I am here to fill the gap in my webdev knowledge and I am not used to Webstorm yet.
Any advice on that ?
rXp
Please sign in to leave a comment.
WebStorm doesn't provide any project templates for MEAN stack. You need searching for existing project skeletons on the web. Try https://github.com/jpotts18/mean-stack-relational, for example. Just clone it, install dependencies (`npm install`) and then open its root directory in WebStorm via File | Open.
Or, create a new empty project and start creating your application from scratch, by adding package.json, source files, etc. to it
Thanks :)
I will try that one and also look on yeoman if there is maybe one.