Simple node.js tool that extends express projects.
Go to file
2021-08-15 20:46:35 +02:00
src bug fix 2021-08-15 19:21:56 +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 version updated 2021-08-15 20:43:27 +02:00
README.md Update README.md 2021-08-15 20:46:35 +02:00

Nork

Simple node.js tool that extends express projects.

About

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

Installation

npm install -g nork

This will install nork globally. If you would like to install nork for only one project, you can also install it locally. For local installation:

npm install nork

How to use

Usage: nork <command> [options]

Options:
  -v, --version                     output the version number
  -h, --help                        output usage information

Commands:
  create [app-name]                 create a new project
  make:controller                   create a new controller
  make:middleware                   create a new middleware
  make:model                        create a new model
  make:route                        create a new route
  make:test                         create a new test
  make:view                         create a new view
  setup                             set up an existing project for nork