- Notifications
You must be signed in to change notification settings - Fork178
A complete Angular 6 and Webpack 4 starter seed with minimal and full featured branches. Full featured branch includes: Material Design 2 (Bootstrap 4 branch available as well),@ngrx, HMR, DLLs and optional use of Universal for server-side rendering - Supports AOT (offline) compilation, sync and lazy loading. Karma/Protractor for e2e/unit tests.
License
qdouble/angular-webpack-starter
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Featuring Material Design 2, Webpack (and Webpack DLL plugin for faster dev builds), HMR (Hot Module Replacement), @ngrx for state management and optional server-side rendering with Universal.
You can use npm, but it's recommended to use yarn as it installs a lot faster and has other benefitshttps://yarnpkg.com/ . Make sure you are using yarn version 0.16.0 or newer (check with 'yarn --version')
git clone https://github.com/qdouble/angular-webpack-starter.gitcd angular-webpack-starteryarnyarn start- Angular
- Async loading
- Treeshaking
- AOT (Ahead of Time/ Offline) Compilation
- AOT safe SASS compilation
- Webpack 4
- Webpack Dlls (Speeds up devServer builds)
- @ngTools AOT plugin
- HMR (Hot Module Replacement)
- TypeScript 2
- @types
- Material Design 2
- Universal (Server-side Rendering)
- @ngrx
- store (RxJS powered state management for Angular apps, inspired by Redux)
- effects (Side effect model for @ngrx/store)
- router-store (Bindings to connect angular/router to ngrx/store)
- store-devtools (Developer Tools for @ngrx/store)
- ngrx-store-logger (Advanced console logging for @ngrx/store applications, ported from redux-logger.)
- ngrx-store-freeze in dev mode (@ngrx/store meta reducer that prevents state from being mutated.)
- Karma/Jasmine testing
- Protractor for E2E testing
- The main goal is to provide an environment where you can have great dev tools and create a production application without worrying about adding a bunch of stuff yourself.
- The goal of your design should be so that you can easily copy and paste your app folder and your constants file into to a new update of this project and have it still work. Use constants and have proper separation to make upgrades easy. If you have any suggestions on areas where this starter can be designed to make updates more easy, file an issue.
Useyarn start for dev server. Default dev port is3000.
Useyarn run start:hmr to run dev server in HMR mode.
Useyarn run build for production build.
Useyarn run server:prod for production server and production watch. Default production port is8088.
Useyarn run universal to run production build in Universal. To run and build universal in AOT mode, useyarn run universal:aot. Default universal port is8000.
Default ports and option to use proxy backend for dev server can be changed inconstants.js file.
To create AOT version, runyarn run build:aot. This will compile and build script.Then you can useyarn run prodserver to see to serve files.
There is also an option to use store-logger which outputs ngrx action history to the console.To set your development mode store logging preference, go to the constant.js file and edit theSTORE_DEV_TOOLS constant.Available options arelogger | none
HMR mode allows you to update a particular module without reloading the entire application.The current state of your app is also stored in @ngrx/store allowing you to make updates to yourcode without losing your currently stored state.
The following are some things that will make AOT compile fail.
- Don’t use require statements for your templates or styles, use styleUrls and templateUrls, the angular2-template-loader plugin will change it to require at build time.
- Don’t use default exports.
- Don’t use form.controls.controlName, use form.get(‘controlName’)
- Don’t use control.errors?.someError, use control.hasError(‘someError’)
- Don’t use functions in your providers, routes or declarations, export a function and then reference that function name
- Inputs, Outputs, View or Content Child(ren), Hostbindings, and any field you use from the template or annotate for Angular should be public
For unit tests, useyarn run test for continuous testing in watch mode and useyarn run test:once for single test. To view code coverage after running test, opencoverage/html/index.html in your browser.
For e2e tests, useyarn run e2e. To run unit test and e2e test at the same time, useyarn run ci.
Recommended Steps for merging this starter into existing project
About
A complete Angular 6 and Webpack 4 starter seed with minimal and full featured branches. Full featured branch includes: Material Design 2 (Bootstrap 4 branch available as well),@ngrx, HMR, DLLs and optional use of Universal for server-side rendering - Supports AOT (offline) compilation, sync and lazy loading. Karma/Protractor for e2e/unit tests.
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors14
Uh oh!
There was an error while loading.Please reload this page.