generator-ng-ts
v0.3.1
Published
A Yeoman generator for Angular 1.x TypeScript projects.
Downloads
10
Maintainers
Readme
generator-ng-ts
A Yeoman generator for Angular 1.x TypeScript projects.
Features
Creates a complete Angular/TypeScript project setup. Including a gulpfile that is able to maintain a standard tsconfig.json file for maxiumum editor compatibilty. There is no gulpfile TypeScript compiler magic involved! The gulp build task simply calls your installed TypeScript compiler which automatically picks up the setup in the
tsconfig.json
file.Supports Angular sub-generators. So far directives, controllers and modules are covered.
It is server framework agnostic. That is, it just creates static HTML, JavaScript and CSS files in a sub-directory of your choice (e.g.
public
orwwwroot
). Thus you can use the generator to in combination with a Node.JS or ASP.NET 5 backend.Adheres to established community guidelines. That is, the structure and coding aims for compatibilty with John Papa's excellent Angular styleguide.
Adopts some of the infrastructure components of John Papa's HotTowel generator, but tries to avoid the template-throw-away-code.
Currently Missing Features
Features for future releases:
- Complete minification flow (including vendor components)
- LESS support
- Item templates & gulp tasks for (unit) testing
Getting Started
Installation
npm install -g tsd
npm install -g [email protected]
npm install -g bower
npm install -g yo
npm install -g generator-ng-ts
You need to install tsd, bower and typescript as globals since the ng-ts generator toolchain relies on it.
Scaffold an App
mkdir app
cd app
yo ng-ts
Result:
+---.settings editor settings VS Code
\---wwwroot static web root
+---app angular app root
| +---blocks infrastructure components
| | +---exception
| | +---log
| | \---router
| +---core routing and core app config
| \---home the home module
+---styles CSS
+---typings TypeScript typings
| +---angularjs
| [... more typings ...]
\---vendor 3rd party components (via bower)
+---angular
[... vendor components ...]
Scaffold a Module
cd wwwroot/app
mkdir widgets
cd widgets
yo ng-ts:module
Creates a file widgets.module.ts
.
Scaffolding is conventional. The name of the module will be derived automaticall via inspecting your subfolder hierarchy.
Scaffold a Directive
yo ng-ts:directive dateTimeNow
Creates three files:
dateTimeNow.directive.controller.ts
dateTimeNow.directive.ts
dateTimeNow.directive.html
Gulp Tasks
The gulpfile has a built-in help page that lists all the tasks and provides a short description:
gulp help
Getting To Know Yeoman
Read the complete Getting Started Guide.
License
MIT © Oliver Lohmann