The following js libraries are used as dependencies, libraries installed via either npm or by using git clone to copy the repository to js-libs folder and then integrating accordingly.
p5.js : Installed via command 'npm install p5' at v1.9.0 : https://p5js.org : https://github.com/processing/p5.js npm install p5 @types/p5 : Installed via npm, defines p5.js types for typescript to prevent errors at v1.7.4 npm install @types/p5
p5.experience.js : Cloned to js-libs on 12/4/2023 : https://github.com/loneboarder/p5.experience.js/tree/master
p5.input.js : Cloned to js-libs on 12/4/2023 : https://github.com/Buggem/processing.input/blob/main/p5.input.js
p5.polar : Cloned to js-libs on 12/4/2023 : https://github.com/liz-peng/p5.Polar
p5.shape.js : Cloned to js-libs on 12/4/2023 : https://github.com/gaba5/p5.shape.js
These and other similar projects can be added to the project using the following command
git submodule add js-libs/projectName.js
--- Excerpt from angular.json --- "scripts": [ "js-libs/p5.experience.js/p5.experience.js", "js-libs/processing.input/p5.input.js", "js-libs/p5.Polar/p5.polar.js", "js-libs/processing.input/p5.input.js" ]
This project was generated with Angular CLI version 12.2.1.
Run ng serve
for a dev server. Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
Run ng generate component component-name
to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module
.
Run ng build
to build the project. The build artifacts will be stored in the dist/
directory.
Run ng test
to execute the unit tests via Karma.
Run ng e2e
to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
To get more help on the Angular CLI use ng help
or go check out the Angular CLI Overview and Command Reference page.