Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tony133/angular-app-book
Simple example app with Angular 16.x
https://github.com/tony133/angular-app-book
angular api-rest crud crud-api example javascript js rest-api ts typescript
Last synced: 18 days ago
JSON representation
Simple example app with Angular 16.x
- Host: GitHub
- URL: https://github.com/tony133/angular-app-book
- Owner: Tony133
- License: mit
- Created: 2019-01-05T22:42:18.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-05-22T19:00:09.000Z (6 months ago)
- Last Synced: 2024-05-22T20:24:12.823Z (6 months ago)
- Topics: angular, api-rest, crud, crud-api, example, javascript, js, rest-api, ts, typescript
- Language: TypeScript
- Homepage:
- Size: 2.02 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# angular-app-book
Simple example App with Angular 16.x
## Install Project
```
$ yarn install
```## Run App
```
$ yarn start
```## Settings url endpoint on file ```environment.ts```
```
export const environment = {
production: false,
endpointApi: 'url-endpoint',
};
```## Development server
Run `ng serve` for a dev server or alias `ng s`.
Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
Or Command from terminal:```
$ open -n http://localhost:4200/
```## Build Project
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.