An open API service indexing awesome lists of open source software.

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

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.