@learn-demo/xprez-clone-hf

2.0.0 • Public • Published

xprez-clone-hf

npm downloads npm Maintainability

A minimal opinionated ES6 web framework (built on top of Express.js) that separates router, controllers and services.

Full documentation and CLI generator will be available soon.

Heavily inspired by Egg.js and Ruby on Rails.

Getting Started

  • To install, run npm i -S xprez
  • To run the example, clone the repo, do npm i, cd example then run xprez s
  • To contribute, please first clone the repo, then run npm i

Executable Bin

By default, apps need to be run with xprez s or xprez serve. The command-line runner will have a scaffolding option available soon.

Example Code Snippet

Sample directory is located in ./example.

Example Code

Required Folder Structure

To start app, run xprez s or xprez serve in the root directory of your project. Notice that you need to strictly follow this structure in order to make your app executable. You can run xprez -h to see all the available options.

.
├── package-lock.json
├── package.json
├── app
    ├── controllers
        └── user.controller.js
    ├── services
        └── user.service.js
    └── views
        └── user.ejs
└── config
    ├── environments
        ├── development.js
        ├── test.js
        └── production.js
    ├── server.js      ------> App's entry point
    └── routes.js 

Dependencies (5)

Dev Dependencies (1)

Package Sidebar

Install

npm i @learn-demo/xprez-clone-hf

Weekly Downloads

0

Version

2.0.0

License

ISC

Unpacked Size

648 kB

Total Files

22

Last publish

Collaborators

  • xetra