Design Pattern's Used And Engineering Principles Used:
- Module Design Pattern.
- High cohesion.
- Loose coupling.
- A small product management application using the Angular 2 & Type Script Users of this application will be able to browse through products.
- For dependencies refer Package.json.
-
Open a command prompt in the project's root directory.
-
Cd into that root folder you just cloned locally.
-
Open terminal in the current folder and to install all dependencies type
npm install
-
This installs the dependencies as defined in the package.json file
-
Now typing
npm start
- This launches the TypeScript compiler (tsc) to compile the application and wait for changes. It also starts the lite-server and launches the browser to run the application.
-
Create your branch:
git checkout -b my-new-feature
-
Commit your changes:
git commit -m 'Add some feature'
-
Push to the branch:
git push origin my-new-feature
-
Send a Pull Request
-
Enjoy!