1.0.14 • Published 2 years ago
do-ddd v1.0.14
do-ddd
do-ddd is a command-line tool designed to automate domain driven design abstractions on code. It generates scaffolding for your DDD-based Node.js projects. It can -
1. Generate scaffolding for Controller and UseCase files based on RequestType and ResponseType files.
Features
- Analyzes user-defined Request and Response Types and generates corresponding UseCase and Controller files.
- TypeScript compatible.
- Utilizes AST manipulation for smart code generation.
How to Install
You can install do-ddd globally using npm:
npm install -g do-dddUsage
Once installed, you can use the do-ddd command to generate the necessary files. Here's how it works:
- Defined your Request and Response Types
I[SomethingSomething]Request.tsI[SomethingSomething]Response.ts
IAuthenticationRequest.ts
export const IAuthenticationRequest = {userEmail: String, password: String}IAuthenticationResponse.ts
export const IAuthenticationResponse = {authCode: String}- Run the following command in the directory containing these files:
do-ddd generateThis will create:
[SomethingSomething]UseCase.ts[SomethingSomething]Controller.ts
Development
To contribute or modify the project, you can clone the repository and install the dependencies:
git clone https://github.com/josharsh/do-ddd.git
cd do-ddd
npm installBuild the project:
npm run buildLink the project for local testing:
npm run linkLicense
This project is licensed under the ISC License. See the LICENSE file for details.