Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mystackbox/prj-angular-masterpage

a simple Angular 2+ Master-Page template, that leverages the concept of lazy-loading in angular 2+ framework.
https://github.com/mystackbox/prj-angular-masterpage

angular-cli angular-rauting angular2 css3 html5 lazy-loading master-pages navbar

Last synced: 3 days ago
JSON representation

a simple Angular 2+ Master-Page template, that leverages the concept of lazy-loading in angular 2+ framework.

Awesome Lists containing this project

README

        

# Angular site - Master-page

![alt text](./src/assets/git-doc-img/responsive-ui.png)

# Table of contents
- [Introduction](#introduction)
- [Environment](#environment)
- [Tech Stack](#tech-stack)
- [UI Layout](#ui-layout)
- [How to run the template](#how-to-run-the-template)
- [References](#references)
- [Licence](#licence)

# Introduction

Master-page template developed using `Angular 2+` framework, with the implementation of responsive web design principles. The template directory-structure uses lazy-loading approach. The objective is to conform to separation of concern, while promoting code maintainability.

[Back to top](#table-of-contents)

# Environment

- Operating System - Windows 11
- Angular CLI - v17.3.10
- Visual Studio Code
- Node.js - v20.11.1
- GitHub & Git Bash

[Back to top](#table-of-contents)

# Tech stack
- Responsive Web Design (HTML5, SCSS, Bootstrap5, Lazy-loading)
- Lazy-loading concept
- Angular/Typescript framework - v17.3.10

[Back to top](#table-of-contents)

# UI Layout
![alt text](./src/assets/git-doc-img/master-pager-layout.png)

[Back to top](#table-of-contents)

# How to run the template

### 1. Installation
Ensure that you have following items are installed in your computer:

- Visual Studio Code
- Node.js
- Angular CLI
- GitHub & Git Bash

### 2. Clone `GitHub` repository

Clone the project from Github repository into your local repository: [ prj-angular-masterpage ](https://github.com/mystackbox/prj-angular-masterpage). For more information about how to clone the GitHub repository, see [Cloning GitHub repository](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository).

### 3. Start the Localhost server

Run the following command in your `CLI` to install all the rrequired packages:
```javascript
npm install
```
Run the following command in your `CLI` to start the `localhost` server.
```javascript
ng serve
```
Once the `localhost` server is running, navigate to `http://localhost:4200/` or copy/paste `http://localhost:4200/` in your browser address-bar, then press enter.

[Back to top](#table-of-contents)

# References

- For more information related to Angular setup, please check out the [Angular documentation](https://angular.io/docs) page.
- For more information related to Angular CLI, please check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
- For more information related to Node.js, please check out the [Introduction to Node.js](https://nodejs.org/en/learn/getting-started/introduction-to-nodejs) page.
- For more information related to Node Package Manager (NPM), please check out the [npm Docs](https://docs.npmjs.com/) page.

[Back to top](#table-of-contents)

# Licence

MIT License

Copyright (c) 2024 | Yingisani

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE..

[Back to top](#table-of-contents)