SKAFFOLD
__npm install -g skaffold__
Skaffold is an open source framework for creating ecommerce applications within minutes and hopefully it would be extended to other kinds of systems also. This is the initializer for a skaffolded project.
__STEPS TO INSTALL__
* open a terminal on your computer and run the following command
npm install -g skaffold
* setup a new project by doing
npm init in a new folder
* run
skaffold [Project name] from your terminal in your project folder.
* if Project name is not supplied then skaffold uses the name of the current folder although you can still override it in the steps that follow.
* answer the questions that follow to setup your new application. pressing enter chooses the defaults for this application.
* then run the command
npm install
* remember to create your database tables. at least until i add migrations.
Now your application is all setup. Have fun coding ;)
Run your application by running
node index from your terminal