Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/edwinvanderven/euler-in-angular
Euler solutions in an Angular app
https://github.com/edwinvanderven/euler-in-angular
algorithms angular euler euler-project euler-solutions jasmine javascript karma karma-jasmine typescript unit-testing
Last synced: 20 days ago
JSON representation
Euler solutions in an Angular app
- Host: GitHub
- URL: https://github.com/edwinvanderven/euler-in-angular
- Owner: edwinvanderven
- Created: 2019-04-27T14:21:34.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-02T17:12:40.000Z (almost 2 years ago)
- Last Synced: 2023-03-07T12:24:39.852Z (almost 2 years ago)
- Topics: algorithms, angular, euler, euler-project, euler-solutions, jasmine, javascript, karma, karma-jasmine, typescript, unit-testing
- Language: TypeScript
- Size: 3.62 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Euler in angular
An Angular webpage with the questions and answers for the [Project Euler](https://projecteuler.net/) problems.
Every problem is divided into its own class and spec file to validate the solution keeps working.
## Development
Run npm install to install all the required packages.
```sh
npm install
```Run npm start to start the development environment and navigate to
```sh
npm run start
```> The app will automatically reload if you change any of the source files.
## Build
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.
## Test
### Running unit tests
Run npm test to execute the unit tests via [Karma](https://karma-runner.github.io).
```sh
npm run test
```### Running end-to-end tests
Run npm e2e to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).
```sh
npm run e2e
```