Skip to content

dockerian/js-ui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

97 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

js-ui

Prototype Web UI by JavaScript Frameworks

Code Coverage Build Status


Contents


Introduction

This repository is created for learning and practice programming with the latest JavaScript library/frameworks to design, build, and deploy web console prototypes.


Build, test and run

Prerequisite: Node.js with npm.

Note: DO NOT run npm install on project root

The Makefile has included build, test, run targets. For example, to build, simply change directory to the repository root and run

make build

or to run tests

DONT_RUN_DOCKER=1 make test  # or `make qt` for quick without e2e test

# or
# make install lint unit  # to run unit tests only
# or
# (cd $JSF && npm i && npm run unit)  # only the 1st time; and here `JSF=vue`
make unit

and to start the app

make run

or to start the app in dev mode

make install
make dev


Deployment

» TBD


dockerian

» Back to Contents «