Skip to content

Angular-RU/webpack-angular-starter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Angular 4 Seed Project

Цель этого starter kit - обеспечить Angular окружение уменьшенным количеством конфигурационных файлов. Все конфигурационные файлы удобно организованы в каталоге config, а не разбросаны по всему проекту. Что упрощает поиск конфигурационных файлов, а также помогает сохранить общую структуру проекта, сделав ее намного чище!

  • Angular 4.3.6
  • TypeScript 2.5
  • Karma/Jasmine
  • Codelyzer & TSLint
  • SASS/SCSS
  • Webpack 3

Commands

  • npm start - start the development webpack server (access via http://localhost:3000/)
  • npm test - run the project unit tests (*.spec.ts files)
  • npm run coverage - run the project unit tests one time and print out a coverage report, generated under /coverage/index.html
  • npm run lint - run the project linting (will be run every time npm test is run)
  • npm run build - generate a production build for the project, which will be inserted into dist/
  • npm run server - run a live-server instance off of the dist/ directory (generated from the build command)