Simple node.js tool that extends express projects.
Go to file
2021-08-15 14:15:21 +02:00
src nork create projectName -> done 2021-08-15 14:11:00 +02:00
src.old update 2021-08-15 00:33:57 +02:00
.gitignore update 2021-08-15 00:33:57 +02:00
artisan.js update 2021-08-15 00:33:57 +02:00
install.js update 2021-08-15 00:33:57 +02:00
LICENSE update 2021-08-15 00:33:57 +02:00
package-lock.json nork create projectName -> done 2021-08-15 14:11:00 +02:00
package.json package.json updated 2021-08-15 14:15:21 +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