Skip to content

Mr-MRF-Dev/Angry-Task

Repository files navigation

πŸ’’ AngryTask

GitHub Release GitHub repo size Release & Deploy GitHub Page codecov GitHub deployments GitHub package.json angular cli version GitHub package.json primeNG version GitHub License

screenshot

AngryTask is a simple task manager that allows you to create, edit, and delete tasks. It is built using Angular and PrimeNG. This project was created to help me learn Angular and PrimeNG. The project is hosted on GitHub Pages and can be accessed here.

πŸš€ Demo

Check out the live demo here!

πŸ“₯ Getting Started

  1. Clone the repository

    If you have Git installed:

    git clone https://github.com/Mr-MRF-Dev/Angry-Task.git

    If you have GitHub CLI installed:

    gh repo clone Mr-MRF-Dev/Angry-Task

    Navigate to the Project Directory

    cd Angry-Task
  2. Install the dependencies

    npm install

βš™ Using NPM Scripts

You can use npm scripts to build, test, and serve the application. For more information, refer to the scripts section in the package.json file.

for example:

npm run start # Serve the application
npm run build # Build the application
npm run test # Run the unit tests

and so on...

🌠 Using Angular CLI

Angular CLI is a powerful tool that can be used to serve, test, and build your application. To use the Angular CLI, you need to have it installed globally. If it's not already installed, you can install it with the following command:

npm install -g @angular/cli

and then you can use the ng command to serve the application. Here are some examples:

🍽 Serve the Application

To start a development server, run:

ng serve

Then, navigate to http://localhost:4200/. The application will automatically reload if you change any of the source files.

Alternatively, you can run:

ng serve --open

This will open the application in your default browser.

πŸ§ͺ Running Unit Tests

To run the unit tests using Karma, execute the following command:

ng test

πŸ“¦ Building the Application

To build the application, use the following command:

ng build

The build artifacts will be stored in the dist/ directory. This directory will contain all the files necessary for deployment.

πŸ“„ Linting the Application

To lint the application, run:

ng lint

This will lint the application using ESLint and Codelyzer.

🀝 Contributing

We welcome any contributions you may have. If you're interested in helping out, please fork the repository and create an Issue or Pull Request. We'll be happy to review your contributions.

πŸ“ License

This project is licensed under the MIT License. For more information, please refer to the LICENSE file.