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: 4 months ago
JSON representation

Simple example app with Angular 16.x

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.