1.0.0 • Published 4 years ago

ng-codeffekt-cli v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

ng-codeffekt-cli

Angular 9+ project generator including support for

  • Bootstrap 4 (theme override with Sass variables)
  • I18n ready (extract localized string in your code and dynamic language changes)
  • SVG Icons loader (use of angular icon registry)

Using ng-codeffekt CLI

  1. Install required tools:

    npm install -g ng-codeffekt-cli
  2. Create your application:

    ng-codeffekt new my-awesome-app

Project structure

The structure follows Angular style guide.

dist/                        prod. build
e2e/                         testing
src/                         source code
|- app/                      app components
|  |- @core/                 module for singleton services and single-use components
|  |- @shared/               module for shared common components, directives and pipes
|  |- app.component.*        app root component
|  |- app.module.ts          app root module definition
|  |- app-routing.module.ts  app routes
|  +- ...                    your additional modules
|- assets/                   assets 
|- environments/             build environments
|- theme/                    bootstrap override theme
|- translations/             translations files
|- index.html                entry point
|- main.scss                 global style entry point
|- main.ts                   app entry point
|- polyfills.ts              polyfills needed by Angular
+- test.ts                   unit tests entry point