Skip to content

online-edu/ng-quicargo

Repository files navigation

Quicargo App (AngularJS)

A sample app which is built using AngularJS v1.7, Bootstrap v4, SCSS, HTML and JavaScript. Building tool is GulpJS and Testing framework is Karma - Jasmine.

Demo

Visit https://online-edu.github.io/ng-quicargo

Run app locally

  1. Install NodeJS
  2. Install any good IDE of your choice e.g. Visual Studio Code
  3. Launch VS Code and open this project (after either by cloning or downloading)
  4. Open terminal (if VS Code Ctrl-backtick)
  5. Install dependencies:
    1. Gulp CLI - npm install gulp-cli -g
    2. App dependencies - npm install
  6. Run the app
    1. Serve - npm start
    2. Visit - localhost:8080
  7. Build the app
    1. Build - npm run build
    2. Check ./dist folder
  8. Run tests
    1. Test - npm test

Enhancement

  • Using babel, ES6(or above) features, such as import/export, () =>, ..., let/const, etc, can be used.