The Wayback Machine - http://web.archive.org/web/20201014075436/https://github.com/fgladisch/angular2-webpack-seed
Skip to content
This repository has been archived by the owner. It is now read-only.
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

angular2-webpack-seed

Build Status

This is a minimalistic Angular 2+ seed project, featuring:

This seed follows the Angular Style Guide.

How to use

Install dependencies

npm install
# or
yarn

Development server

Use the following command to start a local development server which will display the application at http://localhost:3000.

npm start
# or
yarn start

Test your code

The following command will run your unit tests with Karma.

npm test
# or
yarn test

Analyze your code with TSLint

Run TSLint with rules based on the Angular Style Guide with this command.

npm run lint
# or
yarn lint

Build for production

Production files are located in dist.

This project uses Ahead-of-Time Compilation and Tree Shaking for much smaller production files. Files over a threshold of 1KB are also gzipped, which results in approximately 150KB for all JS/HTML/CSS in this project.

npm run build
# or
yarn build

License

MIT

You can’t perform that action at this time.