TypeScript is a strongly typed programming language that builds on JavaScript, giving you better tooling at any scale.
This is a repository with problems and solutions of desing patterns, clean architecture or hexagonal architecture and DDD (Domain Driven Design). All the problems in this repository are from the subject Software Development into the college "Universidad Catolica Andres Bello" made by the profesor Carlos Alonzo.
$ npm install
# Move to one directory and execute the following command
# Running one problem
$ ts-node main.ts
# Another example
$ cd .\Parciales\Parcial_1\18-05-2023\
$ ts-node .\Pregunta-1-v1.ts
Node.js® is a free, open-source, cross-platform JavaScript runtime environment that lets developers create servers, web apps, command line tools and scripts.
Ts-node is a TypeScript execution engine and REPL for Node.js. It JIT transforms TypeScript into JavaScript, enabling you to directly execute TypeScript on Node.js without precompiling. This is accomplished by hooking node's module loading APIs, enabling it to be used seamlessly alongside other Node.js tools and libraries.