https://github.com/pkief/angular-webpack-starter
Basic Angular Webpack Setup
https://github.com/pkief/angular-webpack-starter
angular boilerplate-template starter-kit starter-template webpack
Last synced: about 2 months ago
JSON representation
Basic Angular Webpack Setup
- Host: GitHub
- URL: https://github.com/pkief/angular-webpack-starter
- Owner: PKief
- License: mit
- Created: 2016-09-09T08:43:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-11-19T14:27:04.000Z (over 1 year ago)
- Last Synced: 2026-01-20T08:26:58.039Z (3 months ago)
- Topics: angular, boilerplate-template, starter-kit, starter-template, webpack
- Language: TypeScript
- Homepage:
- Size: 2.39 MB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# angular-webpack-starter
This is a basic Angular starter project to quickly create Angular projects.
## Features
- Webpack configuration
- Auto Reload
- Sass support
- Global styles + component styles
- Translation (i18n)
- Preconfigured components
- routing
- lazy loading
- authentication
- tslint configuration
- test environment
- production server
## Installation and usage
Open a terminal in the project folder and run the following commands.
**Install all required node dependencies:**
```
npm install
```
**Start the developer mode:**
```
npm start
```
Open your webbrowser at [localhost:3000](http://localhost:3000) to see the app running. You can edit the source files and the app will be automatically updated.
**Build the app for production:**
```
npm run build
```
Open your webbrowser at [localhost:9000](http://localhost:9000) to see the productive app running. You can also find the build files in the `dist`-folder.
## Authentication
If you run the app in the browser you'll be redirected to the login page. You can enter any user name and password here.