Simple node.js tool that extends express projects.
Go to file
2022-02-02 16:21:23 +01:00
.githooks feat: githooks 2022-02-02 16:19:03 +01:00
src feat: githooks 2022-02-02 16:20:24 +01:00
.eslintrc.json rewriting to oop and typescript 2021-12-01 18:05:44 +01:00
.gitignore Remove ignored files 2021-12-01 18:12:11 +01:00
.mocharc.json rewriting to oop and typescript 2021-12-01 18:05:44 +01:00
.npmignore npm fixes 2022-01-13 11:43:47 +01:00
LICENSE Create LICENSE 2021-08-15 14:15:07 +02:00
norkconfig.json rewriting to oop and typescript 2021-12-01 18:05:44 +01:00
package.json nork 3.0.4 2022-02-02 16:01:34 +01:00
progress-blog.md nork works 2022-02-01 19:11:48 +01:00
README.md Update README.md 2021-08-19 16:17:18 +02:00
setup-repo.sh feat: githooks 2022-02-02 16:19:03 +01:00
tsconfig.json nork works 2022-02-01 19:11:48 +01: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
  create [app-name] -i           create a new project in current directory
  make controller [name]         create a new controller
  make middleware [name]         create a new middleware
  make model [name]              create a new model
  make route [name]              create a new route
  make test [name]               create a new test
  make view [name]               create a new view
  setup                          set up an existing project for nork