torokmark / design_patterns_in_typescript

:triangular_ruler: Design pattern implementations in TypeScript

Home Page:http://torokmark.github.io/design_patterns_in_typescript/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Design Patterns in TypeScript

Here are the implementations of the following design patterns in TypeScript:

Creational

Structural Patterns

Behavioral Patterns

Compile the project

$ git clone https://github.com/torokmark/design_patterns_in_typescript.git
$ cd design_patterns_in_typescript
$ tsc

There is a tsconfig.json file in the root directory which is responsible for the compiler options.

As it is set the default target is Ecmascript5 now.

Any additional options come here.

By default the output is a patterns.js file.

To compile only one pattern, use the following command.

$ cd design_patterns_in_typescript/visitor
$ tsc --target ES5 --module system --outFile visitor.js visitor.ts

Execute the project

After the compilation of the project, a patterns.js is generated by default. Executing the file is:

node patterns.js

About

:triangular_ruler: Design pattern implementations in TypeScript

http://torokmark.github.io/design_patterns_in_typescript/

License:MIT License


Languages

Language:TypeScript 100.0%