All Projects → antonybudianto → Angular Webpack Starter

antonybudianto / Angular Webpack Starter

Licence: mit
🌟 Angular Webpack Starter with AoT compilation, Lazy-loading, Tree-shaking, and Hot Module Reload (Updated to 4.1.0!)

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to Angular Webpack Starter

Wordpress Starter
📦 A starter template for WordPress websites
Stars: ✭ 26 (-71.43%)
Mutual labels:  webpack, starter-kit, starter
Webpack Starter Basic
A simple webpack starter project for your basic modern web development needs.
Stars: ✭ 552 (+506.59%)
Mutual labels:  webpack, starter-kit, starter
Gulp Pug Starter
Frontend development with pleasure. Pug + SCSS version
Stars: ✭ 228 (+150.55%)
Mutual labels:  webpack, starter-kit, starter
Webpack Simple Starter
A simple webpack starter without framework (Like Vue, React, Angular, etc.)
Stars: ✭ 661 (+626.37%)
Mutual labels:  webpack, starter-kit, starter
Gulp Scss Starter
Frontend development with pleasure. SCSS version
Stars: ✭ 339 (+272.53%)
Mutual labels:  webpack, starter-kit, starter
React Webpack Babel
Simple React Webpack Babel Starter Kit
Stars: ✭ 1,241 (+1263.74%)
Mutual labels:  webpack, starter-kit, starter
Puppy
Starter kit and delivery system for building static prototypes with Twig
Stars: ✭ 25 (-72.53%)
Mutual labels:  webpack, starter-kit
Tvrboreact
Dream starter project: React, Redux, React Router, Webpack
Stars: ✭ 13 (-85.71%)
Mutual labels:  webpack, starter
Suicrux
🚀 Ultimate universal starter with lazy-loading, SSR and i18n. [not maintained]
Stars: ✭ 958 (+952.75%)
Mutual labels:  webpack, starter
Mdb Webpack Starter
Webpack Starter for Material Design for Bootstrap UI Kit based on the latest Bootstrap 5.
Stars: ✭ 39 (-57.14%)
Mutual labels:  webpack, starter
Universal
Seed project for Angular Universal apps featuring Server-Side Rendering (SSR), Webpack, CLI scaffolding, dev/prod modes, AoT compilation, HMR, SCSS compilation, lazy loading, config, cache, i18n, SEO, and TSLint/codelyzer
Stars: ✭ 669 (+635.16%)
Mutual labels:  webpack, starter
Gub
CLI tool for create an npm package from any repos. 🐳
Stars: ✭ 31 (-65.93%)
Mutual labels:  starter-kit, starter
Niklick
Rails Versioned API solution template for hipsters! (Ruby, Ruby on Rails, REST API, GraphQL, Docker, RSpec, Devise, Postgress DB)
Stars: ✭ 39 (-57.14%)
Mutual labels:  starter-kit, starter
Nextsimplestarter
🐳 Simple and Accessible PWA boilerplate with Nextjs 10 + React Hooks
Stars: ✭ 744 (+717.58%)
Mutual labels:  webpack, starter-kit
React Scaffold
The best scaffold for React
Stars: ✭ 27 (-70.33%)
Mutual labels:  webpack, starter
Laravel Boilerplate
Laravel Boilerplate / Starter Kit with Gentelella Admin Theme
Stars: ✭ 704 (+673.63%)
Mutual labels:  starter-kit, starter
Nucleo
🔴 Nucleo - Admin template and Starter project for React
Stars: ✭ 38 (-58.24%)
Mutual labels:  starter-kit, starter
Webvr Webpack Boilerplate
A webvr multi-scenes Single-page application for three.js, webpack
Stars: ✭ 47 (-48.35%)
Mutual labels:  webpack, starter-kit
Starling Api Web Starter Kit
Starter kit and example app for using the Starling API.
Stars: ✭ 46 (-49.45%)
Mutual labels:  webpack, starter-kit
Webxr Webpack Boilerplate
Starter Kit for building rich, immersive WebXR projects (featuring A-Frame) PWA with Webpack and SASS
Stars: ✭ 48 (-47.25%)
Mutual labels:  webpack, starter-kit

Angular Webpack Starter

Build Status Codecov Dependency Status devDependency Status Dependency Status

Live Production Build Demo

Introduction

Welcome to Angular Webpack Starter! This starter contains almost everything you need to start developing Angular.

This repo is evolved from Angular Starter

Why choose this starter?

  • Extensible via ngstarter extensions
  • Complete workflow from serve, lint, unit test, e2e test, to bundling
  • Support dotenv Environment Variables
  • 100% code coverage
  • 100% CI/CD pipeline ready
  • No global package installation
  • You can tune it as you wish, no blackbox

What's included?

Please visit the wiki for more details.

Prerequisites

You need to have Node.js and npm

  • Support Node v6.9 - latest
  • Support npm v3 - latest
  • Support Yarn

Installation

Download the starter from releases page

Go to the starter directory and install the packages (Yarn is recommended):

npm install

Then copy .env.example and rename it as .env. For more details

Start

Let's start up, run following:

// Build DLL first, run this once after adding new package
npm run build:dll

// Start the app
npm start

and done! Open a browser and go to http://localhost:8080 and you can start developing Angular! Every changes to the file will refresh the browser automatically and it'll also compile your changed TypeScripts files to Javascript files.

If any error occured when starting, please retry npm run build:dll. That means DLL build is too old and need to be refreshed.

Testing

This starter comes with testing workflow

Unit testing

Just run

npm test

and it'll compile all TypeScript files, start Karma, then remap Istanbul coverage so that it shows TypeScript coverage, not the transpiled JavaScript coverage.

Coverage result

E2E testing

Firstly start the server:

npm start

To begin testing, run:

npm run e2e

Production

For more details, visit Continuous Integration wiki

You can create production build by running:

npm run build

or you can create production build and then serve it using Lite Server by running:

npm run serve:build

Extension

You can extend this starter with many extensions built by the community. Browse the extensions here

Contributing

Feel free to submit a PR if there are any issues or new features, please read this before

Special thanks

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].