Simple node.js tool that extends express projects.
Go to file
2021-08-15 18:47:46 +02:00
src v1 done 2021-08-15 18:37:39 +02:00
.gitignore gitignore updated 2021-08-15 18:46:50 +02:00
LICENSE Create LICENSE 2021-08-15 14:15:07 +02:00
package.json package.json updated 2021-08-15 18:47:35 +02:00
README.md update 2021-08-15 00:33:57 +02:00

Simple node.js framework that extends express

About

  • The point of this framework is to add into express some feel of php framework Laravel.
  • Primarily get simply express app into MVC architecture

Installation

  • tutorial coming soon! :)

How to use

  • coming soon!

Artisan

  • The key tool of this framework is artisan
  • with that tool you can easily make view, model, controller etc. with prepared lines of code that you will have to write manually, if you didn't use some tool like this. We are programmers, we are lazy to do manual stuff :).

make

  • make is the keyword that you will use with this framework a lot.
  • make is for creating new components of your project.
  • to create a view, model, controller, test or routes: node artisan make:something
  • for example, to make an controller, you will write: node artisan make:controller