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: 4 months 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 (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T22:40:15.000Z (9 months ago)
- Last Synced: 2024-10-30T00:46:07.691Z (9 months ago)
- Topics: angular, api-rest, crud, crud-api, example, javascript, js, rest-api, ts, typescript
- Language: TypeScript
- Homepage:
- Size: 2.28 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 19.x using the standalone components
## Install Project
```bash
pnpm install
```## Run App
```bash
pnpm start
```## Settings url endpoint on file ```environment.ts```
```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.