https://github.com/jakejohnson05/image-carousel
Example of an Image Carousel in Angular 10.0
https://github.com/jakejohnson05/image-carousel
angular image-carousel
Last synced: 2 months ago
JSON representation
Example of an Image Carousel in Angular 10.0
- Host: GitHub
- URL: https://github.com/jakejohnson05/image-carousel
- Owner: JakeJohnson05
- Created: 2019-11-19T21:57:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-10T20:53:29.000Z (over 3 years ago)
- Last Synced: 2025-12-26T02:31:01.724Z (6 months ago)
- Topics: angular, image-carousel
- Language: TypeScript
- Homepage: https://angular-image-carousel.herokuapp.com/
- Size: 2.33 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ImageCarousel
This is an example for creating an image carousel with [Angular](https://angular.io) version ~~8.3.16~~ 10.0.10.
*Originally created with Angular 8.3.16*
> Images courtesy of [Unsplash](https://unsplash.com)
## Development & Testing
This application in its entirety can be served locally in development by running:
```bash
npm run angular
```
The development server runs at `http://localhost:5000`.
## Express Server
After building, the compiled angular application is served using [Express](http://expressjs.com). The Express server is written in Typescript and must be compiled with tsc. Do not run `node .` to create the server.
Start the application using the npm start script:
```bash
npm start
# or
npm run start
```
The application must be run using the npm start script as the Express server is compiled to JS when the start script is run.
## Build
Build the application with:
```bash
npm run build:dev # Builds the application with development configuration
npm run build # Builds the application for production
```