REST CRUD Back-end Services in Seconds Without Writing One Line of Code
Create a Services Back-end in seconds with Node.js and Sails MVC Frameowrk Scenario: You are a front-end developer that would like to test your newly developed user interface, by pointing to some real back end services. In today enterprise world, this can be a very time consuming and expensive challenge. Depending on your company structure, you might have to involve your management for approvals, procurement, and also the infrastructure, security, networking, back-end development, database teams, etc. But all you need is some back-end service that can allow you to insert and retrieve some data, without wasting a month to get it accomplished. This is how can you get it done without writing one line of code. On your local machine or a development server (linux, mac os, windows): 1. Install node.js (http://nodejs.org/) sudo yum install nodejs npm 2. Install sails (http://sailsjs.org/) sudo npm -g install sails 3. Create new Sails Project sails new TestBackend 4. ...